source: protocols/nogaim.c @ 43d8cc5

Last change on this file since 43d8cc5 was 43d8cc5, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-06-13T23:31:18Z

Fixed a memory management problem that caused some strange nickname issues.

  • Property mode set to 100644
File size: 25.1 KB
RevLine 
[b7d3cc34]1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
[ecf8fa8]4  * Copyright 2002-2006 Wilmer van der Gaast and others                *
[b7d3cc34]5  \********************************************************************/
6
7/*
8 * nogaim
9 *
10 * Gaim without gaim - for BitlBee
11 *
12 * This file contains functions called by the Gaim IM-modules. It's written
13 * from scratch for BitlBee and doesn't contain any code from Gaim anymore
14 * (except for the function names).
15 */
16
17/*
18  This program is free software; you can redistribute it and/or modify
19  it under the terms of the GNU General Public License as published by
20  the Free Software Foundation; either version 2 of the License, or
21  (at your option) any later version.
22
23  This program is distributed in the hope that it will be useful,
24  but WITHOUT ANY WARRANTY; without even the implied warranty of
25  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  GNU General Public License for more details.
27
28  You should have received a copy of the GNU General Public License with
29  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
30  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
31  Suite 330, Boston, MA  02111-1307  USA
32*/
33
34#define BITLBEE_CORE
35#include "nogaim.h"
36#include <ctype.h>
37
[0da65d5]38static int remove_chat_buddy_silent( struct groupchat *b, char *handle );
[b7d3cc34]39
40GSList *connections;
41
[65e2ce1]42#ifdef WITH_PLUGINS
[7b23afd]43gboolean load_plugin(char *path)
44{
45        void (*init_function) (void);
46       
47        GModule *mod = g_module_open(path, G_MODULE_BIND_LAZY);
48
49        if(!mod) {
50                log_message(LOGLVL_ERROR, "Can't find `%s', not loading", path);
51                return FALSE;
52        }
53
54        if(!g_module_symbol(mod,"init_plugin",(gpointer *) &init_function)) {
55                log_message(LOGLVL_WARNING, "Can't find function `init_plugin' in `%s'\n", path);
56                return FALSE;
57        }
58
59        init_function();
60
61        return TRUE;
62}
[b7d3cc34]63
[65e2ce1]64void load_plugins(void)
65{
66        GDir *dir;
67        GError *error = NULL;
68
[4bfca70]69        dir = g_dir_open(global.conf->plugindir, 0, &error);
[65e2ce1]70
71        if (dir) {
72                const gchar *entry;
73                char *path;
74
75                while ((entry = g_dir_read_name(dir))) {
[4bfca70]76                        path = g_build_filename(global.conf->plugindir, entry, NULL);
[65e2ce1]77                        if(!path) {
78                                log_message(LOGLVL_WARNING, "Can't build path for %s\n", entry);
79                                continue;
80                        }
81
82                        load_plugin(path);
83
84                        g_free(path);
85                }
86
87                g_dir_close(dir);
88        }
89}
90#endif
[b7d3cc34]91
92/* nogaim.c */
93
[7b23afd]94GList *protocols = NULL;
95 
96void register_protocol (struct prpl *p)
97{
98        protocols = g_list_append(protocols, p);
99}
100
101 
102struct prpl *find_protocol(const char *name)
103{
104        GList *gl;
105        for (gl = protocols; gl; gl = gl->next) 
106        {
107                struct prpl *proto = gl->data;
108                if(!g_strcasecmp(proto->name, name)) 
109                        return proto;
110        }
111        return NULL;
112}
113
114/* nogaim.c */
[b7d3cc34]115void nogaim_init()
116{
[0da65d5]117        extern void msn_initmodule();
118        extern void oscar_initmodule();
119        extern void byahoo_initmodule();
120        extern void jabber_initmodule();
[7b23afd]121
[b7d3cc34]122#ifdef WITH_MSN
[0da65d5]123        msn_initmodule();
[b7d3cc34]124#endif
125
126#ifdef WITH_OSCAR
[0da65d5]127        oscar_initmodule();
[b7d3cc34]128#endif
129       
130#ifdef WITH_YAHOO
[0da65d5]131        byahoo_initmodule();
[b7d3cc34]132#endif
133       
134#ifdef WITH_JABBER
[0da65d5]135        jabber_initmodule();
[b7d3cc34]136#endif
[7b23afd]137
[65e2ce1]138#ifdef WITH_PLUGINS
139        load_plugins();
[b7d3cc34]140#endif
141}
142
143GSList *get_connections() { return connections; }
144
145/* multi.c */
146
[84b045d]147struct im_connection *imcb_new( account_t *acc )
[b7d3cc34]148{
[0da65d5]149        struct im_connection *ic;
[b7d3cc34]150       
[0da65d5]151        ic = g_new0( struct im_connection, 1 );
[b7d3cc34]152       
[0da65d5]153        ic->irc = acc->irc;
154        ic->acc = acc;
155        acc->ic = ic;
[b7d3cc34]156       
[0da65d5]157        connections = g_slist_append( connections, ic );
[b7d3cc34]158       
[0da65d5]159        return( ic );
[b7d3cc34]160}
161
[aef4828]162void imc_free( struct im_connection *ic )
[b7d3cc34]163{
164        account_t *a;
165       
166        /* Destroy the pointer to this connection from the account list */
[0da65d5]167        for( a = ic->irc->accounts; a; a = a->next )
168                if( a->ic == ic )
[b7d3cc34]169                {
[0da65d5]170                        a->ic = NULL;
[b7d3cc34]171                        break;
172                }
173       
[0da65d5]174        connections = g_slist_remove( connections, ic );
175        g_free( ic );
[b7d3cc34]176}
177
[aef4828]178static void serv_got_crap( struct im_connection *ic, char *format, ... )
[b7d3cc34]179{
180        va_list params;
[e27661d]181        char *text;
[dfde8e0]182        account_t *a;
[b7d3cc34]183       
184        va_start( params, format );
[e27661d]185        text = g_strdup_vprintf( format, params );
[b7d3cc34]186        va_end( params );
187
[0da65d5]188        if( ( g_strcasecmp( set_getstr( &ic->irc->set, "strip_html" ), "always" ) == 0 ) ||
[6bbb939]189            ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->irc->set, "strip_html" ) ) )
[e27661d]190                strip_html( text );
[b7d3cc34]191       
[dfde8e0]192        /* Try to find a different connection on the same protocol. */
[0da65d5]193        for( a = ic->irc->accounts; a; a = a->next )
194                if( a->prpl == ic->acc->prpl && a->ic != ic )
[dfde8e0]195                        break;
196       
[e27661d]197        /* If we found one, include the screenname in the message. */
[dfde8e0]198        if( a )
[c2fb3809]199                irc_usermsg( ic->irc, "%s(%s) - %s", ic->acc->prpl->name, ic->acc->user, text );
[dfde8e0]200        else
[0da65d5]201                irc_usermsg( ic->irc, "%s - %s", ic->acc->prpl->name, text );
[7b07dc6]202       
[e27661d]203        g_free( text );
[b7d3cc34]204}
205
[84b045d]206void imcb_log( struct im_connection *ic, char *format, ... )
[aef4828]207{
208        va_list params;
209        char *text;
210       
211        va_start( params, format );
212        text = g_strdup_vprintf( format, params );
213        va_end( params );
214       
215        if( ic->flags & OPT_LOGGED_IN )
216                serv_got_crap( ic, "%s", text );
217        else
218                serv_got_crap( ic, "Logging in: %s", text );
219       
220        g_free( text );
221}
222
[84b045d]223void imcb_error( struct im_connection *ic, char *format, ... )
[aef4828]224{
225        va_list params;
226        char *text;
227       
228        va_start( params, format );
229        text = g_strdup_vprintf( format, params );
230        va_end( params );
231       
232        if( ic->flags & OPT_LOGGED_IN )
233                serv_got_crap( ic, "Error: %s", text );
234        else
235                serv_got_crap( ic, "Couldn't log in: %s", text );
236       
237        g_free( text );
238}
239
[ba9edaa]240static gboolean send_keepalive( gpointer d, gint fd, b_input_condition cond )
[b7d3cc34]241{
[0da65d5]242        struct im_connection *ic = d;
[b7d3cc34]243       
[0da65d5]244        if( ic->acc->prpl->keepalive )
245                ic->acc->prpl->keepalive( ic );
[b7d3cc34]246       
247        return TRUE;
248}
249
[84b045d]250void imcb_connected( struct im_connection *ic )
[b7d3cc34]251{
252        user_t *u;
253       
254        /* MSN servers sometimes redirect you to a different server and do
[84c1a0a]255           the whole login sequence again, so these "late" calls to this
[b7d3cc34]256           function should be handled correctly. (IOW, ignored) */
[0da65d5]257        if( ic->flags & OPT_LOGGED_IN )
[b7d3cc34]258                return;
259       
[0da65d5]260        u = user_find( ic->irc, ic->irc->nick );
[b7d3cc34]261       
[84b045d]262        imcb_log( ic, "Logged in" );
[b7d3cc34]263       
[0da65d5]264        ic->keepalive = b_timeout_add( 60000, send_keepalive, ic );
265        ic->flags |= OPT_LOGGED_IN;
[b7d3cc34]266       
[61dddd0]267        /* Also necessary when we're not away, at least for some of the
268           protocols. */
[84b045d]269        imc_set_away( ic, u->away );
[b7d3cc34]270}
271
[ba9edaa]272gboolean auto_reconnect( gpointer data, gint fd, b_input_condition cond )
[b7d3cc34]273{
274        account_t *a = data;
275       
276        a->reconnect = 0;
277        account_on( a->irc, a );
278       
279        return( FALSE );        /* Only have to run the timeout once */
280}
281
282void cancel_auto_reconnect( account_t *a )
283{
[c98be00]284        b_event_remove( a->reconnect );
[b7d3cc34]285        a->reconnect = 0;
286}
287
[c2fb3809]288void imc_logout( struct im_connection *ic, int allow_reconnect )
[b7d3cc34]289{
[0da65d5]290        irc_t *irc = ic->irc;
[b7d3cc34]291        user_t *t, *u = irc->users;
292        account_t *a;
293       
[8d74291]294        /* Nested calls might happen sometimes, this is probably the best
295           place to catch them. */
[0da65d5]296        if( ic->flags & OPT_LOGGING_OUT )
[8d74291]297                return;
[66f783f]298        else
[0da65d5]299                ic->flags |= OPT_LOGGING_OUT;
[8d74291]300       
[84b045d]301        imcb_log( ic, "Signing off.." );
[fb62f81f]302       
[0da65d5]303        b_event_remove( ic->keepalive );
304        ic->keepalive = 0;
305        ic->acc->prpl->logout( ic );
306        b_event_remove( ic->inpa );
[b7d3cc34]307       
308        while( u )
309        {
[0da65d5]310                if( u->ic == ic )
[b7d3cc34]311                {
312                        t = u->next;
313                        user_del( irc, u->nick );
314                        u = t;
315                }
316                else
317                        u = u->next;
318        }
319       
[0da65d5]320        query_del_by_conn( ic->irc, ic );
[b7d3cc34]321       
322        for( a = irc->accounts; a; a = a->next )
[0da65d5]323                if( a->ic == ic )
[b7d3cc34]324                        break;
325       
326        if( !a )
327        {
328                /* Uhm... This is very sick. */
329        }
[c2fb3809]330        else if( allow_reconnect && set_getbool( &irc->set, "auto_reconnect" ) &&
[00a5270]331                 set_getbool( &a->set, "auto_reconnect" ) )
[b7d3cc34]332        {
[5c9512f]333                int delay = set_getint( &irc->set, "auto_reconnect_delay" );
[b7d3cc34]334               
[84b045d]335                imcb_log( ic, "Reconnecting in %d seconds..", delay );
[c98be00]336                a->reconnect = b_timeout_add( delay * 1000, auto_reconnect, a );
[b7d3cc34]337        }
338       
[aef4828]339        imc_free( ic );
[b7d3cc34]340}
341
342
343/* dialogs.c */
344
[84b045d]345void imcb_ask( struct im_connection *ic, char *msg, void *data, void *doit, void *dont )
[b7d3cc34]346{
[0da65d5]347        query_add( ic->irc, ic, msg, doit, dont, data );
[b7d3cc34]348}
349
350
351/* list.c */
352
[f0cb961]353void imcb_add_buddy( struct im_connection *ic, char *handle, char *group )
[b7d3cc34]354{
355        user_t *u;
[f0cb961]356        char nick[MAX_NICK_LENGTH+1], *s;
[0da65d5]357        irc_t *irc = ic->irc;
[b7d3cc34]358       
[0da65d5]359        if( user_findhandle( ic, handle ) )
[b7d3cc34]360        {
[d5ccd83]361                if( set_getbool( &irc->set, "debug" ) )
[84b045d]362                        imcb_log( ic, "User already exists, ignoring add request: %s", handle );
[b7d3cc34]363               
364                return;
365               
[f0cb961]366                /* Buddy seems to exist already. Let's ignore this request then...
367                   Eventually subsequent calls to this function *should* be possible
368                   when a buddy is in multiple groups. But for now BitlBee doesn't
369                   even support groups so let's silently ignore this for now. */
[b7d3cc34]370        }
371       
372        memset( nick, 0, MAX_NICK_LENGTH + 1 );
[d323394c]373        strcpy( nick, nick_get( ic->acc, handle ) );
[b7d3cc34]374       
[0da65d5]375        u = user_add( ic->irc, nick );
[b7d3cc34]376       
[f0cb961]377//      if( !realname || !*realname ) realname = nick;
378//      u->realname = g_strdup( realname );
[b7d3cc34]379       
380        if( ( s = strchr( handle, '@' ) ) )
381        {
382                u->host = g_strdup( s + 1 );
383                u->user = g_strndup( handle, s - handle );
384        }
[0da65d5]385        else if( ic->acc->server )
[b7d3cc34]386        {
[f0cb961]387                u->host = g_strdup( ic->acc->server );
[b7d3cc34]388                u->user = g_strdup( handle );
389               
390                /* s/ /_/ ... important for AOL screennames */
391                for( s = u->user; *s; s ++ )
392                        if( *s == ' ' )
393                                *s = '_';
394        }
395        else
396        {
[0da65d5]397                u->host = g_strdup( ic->acc->prpl->name );
[b7d3cc34]398                u->user = g_strdup( handle );
399        }
400       
[0da65d5]401        u->ic = ic;
[b7d3cc34]402        u->handle = g_strdup( handle );
[9b8a38b]403        if( group ) u->group = g_strdup( group );
[b7d3cc34]404        u->send_handler = buddy_send_handler;
405        u->last_typing_notice = 0;
406}
407
[f0cb961]408struct buddy *imcb_find_buddy( struct im_connection *ic, char *handle )
[b7d3cc34]409{
410        static struct buddy b[1];
411        user_t *u;
412       
[0da65d5]413        u = user_findhandle( ic, handle );
[b7d3cc34]414       
415        if( !u )
416                return( NULL );
[9624fdf]417       
[b7d3cc34]418        memset( b, 0, sizeof( b ) );
419        strncpy( b->name, handle, 80 );
420        strncpy( b->show, u->realname, BUDDY_ALIAS_MAXLEN );
421        b->present = u->online;
[0da65d5]422        b->ic = u->ic;
[b7d3cc34]423       
424        return( b );
425}
426
[f0cb961]427void imcb_rename_buddy( struct im_connection *ic, char *handle, char *realname )
[b7d3cc34]428{
[0da65d5]429        user_t *u = user_findhandle( ic, handle );
[b7d3cc34]430       
[f0cb961]431        if( !u || !realname ) return;
[b7d3cc34]432       
[e27661d]433        if( g_strcasecmp( u->realname, realname ) != 0 )
[b7d3cc34]434        {
435                if( u->realname != u->nick ) g_free( u->realname );
436               
[e27661d]437                u->realname = g_strdup( realname );
[b7d3cc34]438               
[0da65d5]439                if( ( ic->flags & OPT_LOGGED_IN ) && set_getbool( &ic->irc->set, "display_namechanges" ) )
[84b045d]440                        imcb_log( ic, "User `%s' changed name to `%s'", u->nick, u->realname );
[b7d3cc34]441        }
442}
443
[d06eabf]444/* Mainly meant for ICQ (and now also for Jabber conferences) to allow IM
445   modules to suggest a nickname for a handle. */
446void imcb_buddy_nick_hint( struct im_connection *ic, char *handle, char *nick )
447{
448        user_t *u = user_findhandle( ic, handle );
[43d8cc5]449        char newnick[MAX_NICK_LENGTH+1], *orig_nick;
[d06eabf]450       
[e0e2a71]451        if( u && !u->online && !nick_saved( ic->acc, handle ) )
[d06eabf]452        {
453                /* Only do this if the person isn't online yet (which should
454                   be the case if we just added it) and if the user hasn't
455                   assigned a nickname to this buddy already. */
456               
[e0e2a71]457                strncpy( newnick, nick, MAX_NICK_LENGTH );
458                newnick[MAX_NICK_LENGTH] = 0;
[d06eabf]459               
460                /* Some processing to make sure this string is a valid IRC nickname. */
461                nick_strip( newnick );
462                if( set_getbool( &ic->irc->set, "lcnicks" ) )
463                        nick_lc( newnick );
464               
465                nick_dedupe( ic->acc, handle, newnick );
466               
[43d8cc5]467                /* u->nick will be freed halfway the process, so it can't be
468                   passed as an argument. */
469                orig_nick = g_strdup( u->nick );
470                user_rename( ic->irc, orig_nick, newnick );
471                g_free( orig_nick );
[d06eabf]472        }
473}
[b7d3cc34]474
475/* prpl.c */
476
[7bf0f5f0]477struct show_got_added_data
478{
[0da65d5]479        struct im_connection *ic;
[7bf0f5f0]480        char *handle;
481};
482
483void show_got_added_no( gpointer w, struct show_got_added_data *data )
484{
485        g_free( data->handle );
486        g_free( data );
487}
488
489void show_got_added_yes( gpointer w, struct show_got_added_data *data )
490{
[0da65d5]491        data->ic->acc->prpl->add_buddy( data->ic, data->handle, NULL );
[f0cb961]492        /* imcb_add_buddy( data->ic, NULL, data->handle, data->handle ); */
[7bf0f5f0]493       
494        return show_got_added_no( w, data );
495}
496
[84b045d]497void imcb_ask_add( struct im_connection *ic, char *handle, const char *realname )
[b7d3cc34]498{
[7bf0f5f0]499        struct show_got_added_data *data = g_new0( struct show_got_added_data, 1 );
500        char *s;
501       
502        /* TODO: Make a setting for this! */
[0da65d5]503        if( user_findhandle( ic, handle ) != NULL )
[7bf0f5f0]504                return;
505       
506        s = g_strdup_printf( "The user %s is not in your buddy list yet. Do you want to add him/her now?", handle );
507       
[0da65d5]508        data->ic = ic;
[7bf0f5f0]509        data->handle = g_strdup( handle );
[0da65d5]510        query_add( ic->irc, ic, s, show_got_added_yes, show_got_added_no, data );
[b7d3cc34]511}
512
513
514/* server.c */                   
515
[6bbb939]516void imcb_buddy_status( struct im_connection *ic, const char *handle, int flags, const char *state, const char *message )
[b7d3cc34]517{
518        user_t *u;
519        int oa, oo;
520       
[6bbb939]521        u = user_findhandle( ic, (char*) handle );
[b7d3cc34]522       
523        if( !u )
524        {
[0da65d5]525                if( g_strcasecmp( set_getstr( &ic->irc->set, "handle_unknown" ), "add" ) == 0 )
[b7d3cc34]526                {
[f0cb961]527                        imcb_add_buddy( ic, (char*) handle, NULL );
[6bbb939]528                        u = user_findhandle( ic, (char*) handle );
[b7d3cc34]529                }
530                else
531                {
[0da65d5]532                        if( set_getbool( &ic->irc->set, "debug" ) || g_strcasecmp( set_getstr( &ic->irc->set, "handle_unknown" ), "ignore" ) != 0 )
[b7d3cc34]533                        {
[6bbb939]534                                imcb_log( ic, "imcb_buddy_status() for unknown handle %s:", handle );
535                                imcb_log( ic, "flags = %d, state = %s, message = %s", flags,
536                                          state ? state : "NULL", message ? message : "NULL" );
[b7d3cc34]537                        }
538                       
539                        return;
540                }
541        }
542       
543        oa = u->away != NULL;
544        oo = u->online;
545       
546        if( u->away )
547        {
548                g_free( u->away );
549                u->away = NULL;
550        }
551       
[6bbb939]552        if( ( flags & OPT_LOGGED_IN ) && !u->online )
[b7d3cc34]553        {
[0da65d5]554                irc_spawn( ic->irc, u );
[b7d3cc34]555                u->online = 1;
556        }
[6bbb939]557        else if( !( flags & OPT_LOGGED_IN ) && u->online )
[b7d3cc34]558        {
[0da65d5]559                struct groupchat *c;
[b7d3cc34]560               
[0da65d5]561                irc_kill( ic->irc, u );
[b7d3cc34]562                u->online = 0;
563               
[e35d1a1]564                /* Remove him/her from the groupchats to prevent PART messages after he/she QUIT already */
565                for( c = ic->groupchats; c; c = c->next )
[6bbb939]566                        remove_chat_buddy_silent( c, (char*) handle );
[b7d3cc34]567        }
568       
[6bbb939]569        if( flags & OPT_AWAY )
[b7d3cc34]570        {
[6bbb939]571                if( state && message )
572                {
573                        u->away = g_strdup_printf( "%s (%s)", state, message );
574                }
575                else if( state )
576                {
577                        u->away = g_strdup( state );
578                }
579                else if( message )
580                {
581                        u->away = g_strdup( message );
582                }
583                else
584                {
585                        u->away = g_strdup( "Away" );
586                }
[b7d3cc34]587        }
[6bbb939]588        /* else waste_any_state_information_for_now(); */
[b7d3cc34]589       
590        /* LISPy... */
[0da65d5]591        if( ( set_getbool( &ic->irc->set, "away_devoice" ) ) &&         /* Don't do a thing when user doesn't want it */
[b7d3cc34]592            ( u->online ) &&                                            /* Don't touch offline people */
593            ( ( ( u->online != oo ) && !u->away ) ||                    /* Voice joining people */
594              ( ( u->online == oo ) && ( oa == !u->away ) ) ) )         /* (De)voice people changing state */
595        {
[0da65d5]596                irc_write( ic->irc, ":%s MODE %s %cv %s", ic->irc->myhost,
[9624fdf]597                                                          ic->irc->channel, u->away?'-':'+', u->nick );
[b7d3cc34]598        }
599}
600
[9624fdf]601void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, u_int32_t flags, time_t sent_at )
[b7d3cc34]602{
[0da65d5]603        irc_t *irc = ic->irc;
[b7d3cc34]604        user_t *u;
605       
[0da65d5]606        u = user_findhandle( ic, handle );
[b7d3cc34]607       
608        if( !u )
609        {
[5c9512f]610                char *h = set_getstr( &irc->set, "handle_unknown" );
[b7d3cc34]611               
612                if( g_strcasecmp( h, "ignore" ) == 0 )
613                {
[d5ccd83]614                        if( set_getbool( &irc->set, "debug" ) )
[84b045d]615                                imcb_log( ic, "Ignoring message from unknown handle %s", handle );
[b7d3cc34]616                       
617                        return;
618                }
619                else if( g_strncasecmp( h, "add", 3 ) == 0 )
620                {
[d5ccd83]621                        int private = set_getbool( &irc->set, "private" );
[b7d3cc34]622                       
623                        if( h[3] )
624                        {
625                                if( g_strcasecmp( h + 3, "_private" ) == 0 )
626                                        private = 1;
627                                else if( g_strcasecmp( h + 3, "_channel" ) == 0 )
628                                        private = 0;
629                        }
630                       
[f0cb961]631                        imcb_add_buddy( ic, handle, NULL );
[0da65d5]632                        u = user_findhandle( ic, handle );
[b7d3cc34]633                        u->is_private = private;
634                }
635                else
636                {
[84b045d]637                        imcb_log( ic, "Message from unknown handle %s:", handle );
[b7d3cc34]638                        u = user_find( irc, irc->mynick );
639                }
640        }
641       
[0da65d5]642        if( ( g_strcasecmp( set_getstr( &ic->irc->set, "strip_html" ), "always" ) == 0 ) ||
[6bbb939]643            ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->irc->set, "strip_html" ) ) )
[b7d3cc34]644                strip_html( msg );
645
[30f248a]646        while( strlen( msg ) > 425 )
[b7d3cc34]647        {
648                char tmp, *nl;
649               
[30f248a]650                tmp = msg[425];
651                msg[425] = 0;
[b7d3cc34]652               
[30f248a]653                /* If there's a newline/space in this string, split up there,
654                   looks a bit prettier. */
[f1df064]655                if( ( nl = strrchr( msg, '\n' ) ) || ( nl = strrchr( msg, ' ' ) ) )
[30f248a]656                {
657                        msg[425] = tmp;
658                        tmp = *nl;
[b7d3cc34]659                        *nl = 0;
[30f248a]660                }
[b7d3cc34]661               
662                irc_msgfrom( irc, u->nick, msg );
663               
664                /* Move on. */
665                if( nl )
666                {
[30f248a]667                        *nl = tmp;
[b7d3cc34]668                        msg = nl + 1;
669                }
670                else
671                {
[30f248a]672                        msg[425] = tmp;
673                        msg += 425;
[b7d3cc34]674                }
675        }
676        irc_msgfrom( irc, u->nick, msg );
677}
678
[9624fdf]679void imcb_buddy_typing( struct im_connection *ic, char *handle, u_int32_t flags )
[b7d3cc34]680{
681        user_t *u;
682       
[0da65d5]683        if( !set_getbool( &ic->irc->set, "typing_notice" ) )
[b7d3cc34]684                return;
685       
[9624fdf]686        if( ( u = user_findhandle( ic, handle ) ) )
687        {
688                char buf[256]; 
689               
690                g_snprintf( buf, 256, "\1TYPING %d\1", ( flags >> 8 ) & 3 );
691                irc_privmsg( ic->irc, u, "PRIVMSG", ic->irc->nick, NULL, buf );
[e7f46c5]692        }
[b7d3cc34]693}
694
[e35d1a1]695void imcb_chat_free( struct groupchat *c )
[b7d3cc34]696{
[0da65d5]697        struct im_connection *ic = c->ic;
[e35d1a1]698        struct groupchat *l;
[b7d3cc34]699        GList *ir;
700       
[0da65d5]701        if( set_getbool( &ic->irc->set, "debug" ) )
[84b045d]702                imcb_log( ic, "You were removed from conversation 0x%x", (int) c );
[b7d3cc34]703       
704        if( c )
705        {
706                if( c->joined )
707                {
708                        user_t *u, *r;
709                       
[0da65d5]710                        r = user_find( ic->irc, ic->irc->mynick );
711                        irc_privmsg( ic->irc, r, "PRIVMSG", c->channel, "", "Cleaning up channel, bye!" );
[b7d3cc34]712                       
[0da65d5]713                        u = user_find( ic->irc, ic->irc->nick );
714                        irc_kick( ic->irc, u, c->channel, r );
715                        /* irc_part( ic->irc, u, c->channel ); */
[b7d3cc34]716                }
717               
[e35d1a1]718                /* Find the previous chat in the linked list. */
719                for( l = ic->groupchats; l && l->next != c; l = l->next );
720               
[b7d3cc34]721                if( l )
722                        l->next = c->next;
723                else
[e35d1a1]724                        ic->groupchats = c->next;
[b7d3cc34]725               
726                for( ir = c->in_room; ir; ir = ir->next )
727                        g_free( ir->data );
728                g_list_free( c->in_room );
729                g_free( c->channel );
730                g_free( c->title );
731                g_free( c );
732        }
733}
734
[61ae52c]735void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u_int32_t flags, time_t sent_at )
[b7d3cc34]736{
[0da65d5]737        struct im_connection *ic = c->ic;
[b7d3cc34]738        user_t *u;
739       
740        /* Gaim sends own messages through this too. IRC doesn't want this, so kill them */
[c2fb3809]741        if( g_strcasecmp( who, ic->acc->user ) == 0 )
[b7d3cc34]742                return;
743       
[0da65d5]744        u = user_findhandle( ic, who );
[b7d3cc34]745       
[0da65d5]746        if( ( g_strcasecmp( set_getstr( &ic->irc->set, "strip_html" ), "always" ) == 0 ) ||
[6bbb939]747            ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->irc->set, "strip_html" ) ) )
[b7d3cc34]748                strip_html( msg );
749       
750        if( c && u )
[0da65d5]751                irc_privmsg( ic->irc, u, "PRIVMSG", c->channel, "", msg );
[b7d3cc34]752        else
[84b045d]753                imcb_log( ic, "Message from/to conversation %s@0x%x (unknown conv/user): %s", who, (int) c, msg );
[b7d3cc34]754}
755
[61ae52c]756struct groupchat *imcb_chat_new( struct im_connection *ic, char *handle )
[b7d3cc34]757{
[0da65d5]758        struct groupchat *c;
[b7d3cc34]759       
760        /* This one just creates the conversation structure, user won't see anything yet */
761       
[e35d1a1]762        if( ic->groupchats )
[b7d3cc34]763        {
[e35d1a1]764                for( c = ic->groupchats; c->next; c = c->next );
[0da65d5]765                c = c->next = g_new0( struct groupchat, 1 );
[b7d3cc34]766        }
767        else
[e35d1a1]768                ic->groupchats = c = g_new0( struct groupchat, 1 );
[b7d3cc34]769       
[0da65d5]770        c->ic = ic;
[b7d3cc34]771        c->title = g_strdup( handle );
[0da65d5]772        c->channel = g_strdup_printf( "&chat_%03d", ic->irc->c_id++ );
[b7d3cc34]773       
[0da65d5]774        if( set_getbool( &ic->irc->set, "debug" ) )
[84b045d]775                imcb_log( ic, "Creating new conversation: (id=0x%x,handle=%s)", (int) c, handle );
[b7d3cc34]776       
[fa29d093]777        return c;
[b7d3cc34]778}
779
780
781/* buddy_chat.c */
782
[61ae52c]783void imcb_chat_add_buddy( struct groupchat *b, char *handle )
[b7d3cc34]784{
[0da65d5]785        user_t *u = user_findhandle( b->ic, handle );
[b7d3cc34]786        int me = 0;
787       
[0da65d5]788        if( set_getbool( &b->ic->irc->set, "debug" ) )
[84b045d]789                imcb_log( b->ic, "User %s added to conversation 0x%x", handle, (int) b );
[b7d3cc34]790       
791        /* It might be yourself! */
[c2fb3809]792        if( b->ic->acc->prpl->handle_cmp( handle, b->ic->acc->user ) == 0 )
[b7d3cc34]793        {
[0da65d5]794                u = user_find( b->ic->irc, b->ic->irc->nick );
[b7d3cc34]795                if( !b->joined )
[0da65d5]796                        irc_join( b->ic->irc, u, b->channel );
[b7d3cc34]797                b->joined = me = 1;
798        }
799       
800        /* Most protocols allow people to join, even when they're not in
801           your contact list. Try to handle that here */
802        if( !u )
803        {
[f0cb961]804                imcb_add_buddy( b->ic, handle, NULL );
[0da65d5]805                u = user_findhandle( b->ic, handle );
[b7d3cc34]806        }
807       
808        /* Add the handle to the room userlist, if it's not 'me' */
809        if( !me )
810        {
811                if( b->joined )
[0da65d5]812                        irc_join( b->ic->irc, u, b->channel );
[b7d3cc34]813                b->in_room = g_list_append( b->in_room, g_strdup( handle ) );
814        }
815}
816
[2d317bb]817/* This function is one BIG hack... :-( EREWRITE */
[61ae52c]818void imcb_chat_remove_buddy( struct groupchat *b, char *handle, char *reason )
[b7d3cc34]819{
820        user_t *u;
821        int me = 0;
822       
[0da65d5]823        if( set_getbool( &b->ic->irc->set, "debug" ) )
[84b045d]824                imcb_log( b->ic, "User %s removed from conversation 0x%x (%s)", handle, (int) b, reason ? reason : "" );
[b7d3cc34]825       
826        /* It might be yourself! */
[c2fb3809]827        if( g_strcasecmp( handle, b->ic->acc->user ) == 0 )
[b7d3cc34]828        {
[2d317bb]829                if( b->joined == 0 )
830                        return;
831               
[0da65d5]832                u = user_find( b->ic->irc, b->ic->irc->nick );
[b7d3cc34]833                b->joined = 0;
834                me = 1;
835        }
836        else
837        {
[0da65d5]838                u = user_findhandle( b->ic, handle );
[b7d3cc34]839        }
840       
[2d317bb]841        if( me || ( remove_chat_buddy_silent( b, handle ) && b->joined && u ) )
842                irc_part( b->ic->irc, u, b->channel );
[b7d3cc34]843}
844
[0da65d5]845static int remove_chat_buddy_silent( struct groupchat *b, char *handle )
[b7d3cc34]846{
847        GList *i;
848       
849        /* Find the handle in the room userlist and shoot it */
850        i = b->in_room;
851        while( i )
852        {
853                if( g_strcasecmp( handle, i->data ) == 0 )
854                {
855                        g_free( i->data );
856                        b->in_room = g_list_remove( b->in_room, i->data );
857                        return( 1 );
858                }
859               
860                i = i->next;
861        }
862       
863        return( 0 );
864}
865
866
867/* Misc. BitlBee stuff which shouldn't really be here */
868
[5c9512f]869char *set_eval_away_devoice( set_t *set, char *value )
[b7d3cc34]870{
[5c9512f]871        irc_t *irc = set->data;
[b7d3cc34]872        int st;
873       
874        if( ( g_strcasecmp( value, "true" ) == 0 ) || ( g_strcasecmp( value, "yes" ) == 0 ) || ( g_strcasecmp( value, "on" ) == 0 ) )
875                st = 1;
876        else if( ( g_strcasecmp( value, "false" ) == 0 ) || ( g_strcasecmp( value, "no" ) == 0 ) || ( g_strcasecmp( value, "off" ) == 0 ) )
877                st = 0;
878        else if( sscanf( value, "%d", &st ) != 1 )
879                return( NULL );
880       
881        st = st != 0;
882       
883        /* Horror.... */
884       
[d5ccd83]885        if( st != set_getbool( &irc->set, "away_devoice" ) )
[b7d3cc34]886        {
887                char list[80] = "";
888                user_t *u = irc->users;
889                int i = 0, count = 0;
890                char pm;
891                char v[80];
892               
893                if( st )
894                        pm = '+';
895                else
896                        pm = '-';
897               
898                while( u )
899                {
[0da65d5]900                        if( u->ic && u->online && !u->away )
[b7d3cc34]901                        {
902                                if( ( strlen( list ) + strlen( u->nick ) ) >= 79 )
903                                {
904                                        for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0;
[2087159]905                                        irc_write( irc, ":%s MODE %s %c%s%s",
906                                                   irc->myhost,
[b7d3cc34]907                                                   irc->channel, pm, v, list );
908                                       
909                                        *list = 0;
910                                        count = 0;
911                                }
912                               
913                                sprintf( list + strlen( list ), " %s", u->nick );
914                                count ++;
915                        }
916                        u = u->next;
917                }
918               
919                /* $v = 'v' x $i */
920                for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0;
[2087159]921                irc_write( irc, ":%s MODE %s %c%s%s", irc->myhost,
[b7d3cc34]922                                                            irc->channel, pm, v, list );
923        }
924       
[5c9512f]925        return( set_eval_bool( set, value ) );
[b7d3cc34]926}
927
[226fce1]928
929
930
931/* The plan is to not allow straight calls to prpl functions anymore, but do
932   them all from some wrappers. We'll start to define some down here: */
933
[84b045d]934int imc_buddy_msg( struct im_connection *ic, char *handle, char *msg, int flags )
[b7d3cc34]935{
[e27661d]936        char *buf = NULL;
937        int st;
[b7d3cc34]938       
[6bbb939]939        if( ( ic->flags & OPT_DOES_HTML ) && ( g_strncasecmp( msg, "<html>", 6 ) != 0 ) )
[c572dd6]940        {
[e27661d]941                buf = escape_html( msg );
[c572dd6]942                msg = buf;
[b7d3cc34]943        }
944       
[f6c963b]945        st = ic->acc->prpl->buddy_msg( ic, handle, msg, flags );
[e27661d]946        g_free( buf );
947       
948        return st;
[b7d3cc34]949}
950
[84b045d]951int imc_chat_msg( struct groupchat *c, char *msg, int flags )
[b7d3cc34]952{
[e27661d]953        char *buf = NULL;
[b7d3cc34]954       
[6bbb939]955        if( ( c->ic->flags & OPT_DOES_HTML ) && ( g_strncasecmp( msg, "<html>", 6 ) != 0 ) )
[e27661d]956        {
957                buf = escape_html( msg );
[b7d3cc34]958                msg = buf;
959        }
960       
[f6c963b]961        c->ic->acc->prpl->chat_msg( c, msg, flags );
[e27661d]962        g_free( buf );
963       
[0da65d5]964        return 1;
[b7d3cc34]965}
[226fce1]966
[84b045d]967static char *imc_away_alias_find( GList *gcm, char *away );
[226fce1]968
[84b045d]969int imc_set_away( struct im_connection *ic, char *away )
[226fce1]970{
971        GList *m, *ms;
972        char *s;
973       
974        if( !away ) away = "";
[0da65d5]975        ms = m = ic->acc->prpl->away_states( ic );
[226fce1]976       
977        while( m )
978        {
979                if( *away )
980                {
981                        if( g_strncasecmp( m->data, away, strlen( m->data ) ) == 0 )
982                                break;
983                }
984                else
985                {
986                        if( g_strcasecmp( m->data, "Available" ) == 0 )
987                                break;
988                        if( g_strcasecmp( m->data, "Online" ) == 0 )
989                                break;
990                }
991                m = m->next;
992        }
993       
994        if( m )
995        {
[0da65d5]996                ic->acc->prpl->set_away( ic, m->data, *away ? away : NULL );
[226fce1]997        }
998        else
999        {
[84b045d]1000                s = imc_away_alias_find( ms, away );
[226fce1]1001                if( s )
1002                {
[0da65d5]1003                        ic->acc->prpl->set_away( ic, s, away );
1004                        if( set_getbool( &ic->irc->set, "debug" ) )
[84b045d]1005                                imcb_log( ic, "Setting away state to %s", s );
[226fce1]1006                }
1007                else
[0da65d5]1008                        ic->acc->prpl->set_away( ic, GAIM_AWAY_CUSTOM, away );
[226fce1]1009        }
1010       
1011        return( 1 );
1012}
1013
[84b045d]1014static char *imc_away_alias_list[8][5] =
[226fce1]1015{
1016        { "Away from computer", "Away", "Extended away", NULL },
1017        { "NA", "N/A", "Not available", NULL },
1018        { "Busy", "Do not disturb", "DND", "Occupied", NULL },
1019        { "Be right back", "BRB", NULL },
1020        { "On the phone", "Phone", "On phone", NULL },
1021        { "Out to lunch", "Lunch", "Food", NULL },
1022        { "Invisible", "Hidden" },
1023        { NULL }
1024};
1025
[84b045d]1026static char *imc_away_alias_find( GList *gcm, char *away )
[226fce1]1027{
1028        GList *m;
1029        int i, j;
1030       
[84b045d]1031        for( i = 0; *imc_away_alias_list[i]; i ++ )
[226fce1]1032        {
[84b045d]1033                for( j = 0; imc_away_alias_list[i][j]; j ++ )
1034                        if( g_strncasecmp( away, imc_away_alias_list[i][j], strlen( imc_away_alias_list[i][j] ) ) == 0 )
[226fce1]1035                                break;
1036               
[84b045d]1037                if( !imc_away_alias_list[i][j] )        /* If we reach the end, this row */
[226fce1]1038                        continue;                       /* is not what we want. Next!    */
1039               
1040                /* Now find an entry in this row which exists in gcm */
[84b045d]1041                for( j = 0; imc_away_alias_list[i][j]; j ++ )
[226fce1]1042                {
1043                        m = gcm;
1044                        while( m )
1045                        {
[84b045d]1046                                if( g_strcasecmp( imc_away_alias_list[i][j], m->data ) == 0 )
1047                                        return( imc_away_alias_list[i][j] );
[226fce1]1048                                m = m->next;
1049                        }
1050                }
1051        }
1052       
1053        return( NULL );
1054}
[da3b536]1055
[84b045d]1056void imc_add_allow( struct im_connection *ic, char *handle )
[da3b536]1057{
[0da65d5]1058        if( g_slist_find_custom( ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) == NULL )
[da3b536]1059        {
[0da65d5]1060                ic->permit = g_slist_prepend( ic->permit, g_strdup( handle ) );
[da3b536]1061        }
1062       
[0da65d5]1063        ic->acc->prpl->add_permit( ic, handle );
[da3b536]1064}
1065
[84b045d]1066void imc_rem_allow( struct im_connection *ic, char *handle )
[da3b536]1067{
1068        GSList *l;
1069       
[0da65d5]1070        if( ( l = g_slist_find_custom( ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) ) )
[da3b536]1071        {
1072                g_free( l->data );
[0da65d5]1073                ic->permit = g_slist_delete_link( ic->permit, l );
[da3b536]1074        }
1075       
[0da65d5]1076        ic->acc->prpl->rem_permit( ic, handle );
[da3b536]1077}
1078
[84b045d]1079void imc_add_block( struct im_connection *ic, char *handle )
[da3b536]1080{
[0da65d5]1081        if( g_slist_find_custom( ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) == NULL )
[da3b536]1082        {
[0da65d5]1083                ic->deny = g_slist_prepend( ic->deny, g_strdup( handle ) );
[da3b536]1084        }
1085       
[0da65d5]1086        ic->acc->prpl->add_deny( ic, handle );
[da3b536]1087}
1088
[84b045d]1089void imc_rem_block( struct im_connection *ic, char *handle )
[da3b536]1090{
1091        GSList *l;
1092       
[0da65d5]1093        if( ( l = g_slist_find_custom( ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) ) )
[da3b536]1094        {
1095                g_free( l->data );
[0da65d5]1096                ic->deny = g_slist_delete_link( ic->deny, l );
[da3b536]1097        }
1098       
[0da65d5]1099        ic->acc->prpl->rem_deny( ic, handle );
[da3b536]1100}
Note: See TracBrowser for help on using the repository browser.