source: protocols/nogaim.c @ aa44bdd

Last change on this file since aa44bdd was eabc9d2, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-04-11T22:49:32Z

Fixed cleanup issues when turning off an account. Also fixed syntax of
*_user_free().

  • Property mode set to 100644
File size: 24.1 KB
RevLine 
[b7d3cc34]1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
[58adb7e]4  * Copyright 2002-2010 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 <ctype.h>
36
[4cf80bb]37#include "nogaim.h"
38#include "chat.h"
39
[b7d3cc34]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) {
[8ad90fb]50                log_message(LOGLVL_ERROR, "Can't find `%s', not loading (%s)\n", path, g_module_error());
[7b23afd]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
[7b23afd]92GList *protocols = NULL;
93 
94void register_protocol (struct prpl *p)
95{
[90cd6c4]96        int i;
97        gboolean refused = global.conf->protocols != NULL;
98 
99        for (i = 0; global.conf->protocols && global.conf->protocols[i]; i++)
100        {
101                if (g_strcasecmp(p->name, global.conf->protocols[i]) == 0)
102                        refused = FALSE;
103        }
104
105        if (refused)
106                log_message(LOGLVL_WARNING, "Protocol %s disabled\n", p->name);
107        else
108                protocols = g_list_append(protocols, p);
[7b23afd]109}
110
111struct prpl *find_protocol(const char *name)
112{
113        GList *gl;
114        for (gl = protocols; gl; gl = gl->next) 
115        {
116                struct prpl *proto = gl->data;
117                if(!g_strcasecmp(proto->name, name)) 
118                        return proto;
119        }
120        return NULL;
121}
122
[b7d3cc34]123void nogaim_init()
124{
[0da65d5]125        extern void msn_initmodule();
126        extern void oscar_initmodule();
127        extern void byahoo_initmodule();
128        extern void jabber_initmodule();
[7b23afd]129
[b7d3cc34]130#ifdef WITH_MSN
[0da65d5]131        msn_initmodule();
[b7d3cc34]132#endif
133
134#ifdef WITH_OSCAR
[0da65d5]135        oscar_initmodule();
[b7d3cc34]136#endif
137       
138#ifdef WITH_YAHOO
[0da65d5]139        byahoo_initmodule();
[b7d3cc34]140#endif
141       
142#ifdef WITH_JABBER
[0da65d5]143        jabber_initmodule();
[b7d3cc34]144#endif
[7b23afd]145
[65e2ce1]146#ifdef WITH_PLUGINS
147        load_plugins();
[b7d3cc34]148#endif
149}
150
151GSList *get_connections() { return connections; }
152
[84b045d]153struct im_connection *imcb_new( account_t *acc )
[b7d3cc34]154{
[0da65d5]155        struct im_connection *ic;
[b7d3cc34]156       
[0da65d5]157        ic = g_new0( struct im_connection, 1 );
[b7d3cc34]158       
[81e04e1]159        ic->bee = acc->bee;
[0da65d5]160        ic->acc = acc;
161        acc->ic = ic;
[b7d3cc34]162       
[0da65d5]163        connections = g_slist_append( connections, ic );
[b7d3cc34]164       
[0da65d5]165        return( ic );
[b7d3cc34]166}
167
[aef4828]168void imc_free( struct im_connection *ic )
[b7d3cc34]169{
170        account_t *a;
171       
172        /* Destroy the pointer to this connection from the account list */
[81e04e1]173        for( a = ic->bee->accounts; a; a = a->next )
[0da65d5]174                if( a->ic == ic )
[b7d3cc34]175                {
[0da65d5]176                        a->ic = NULL;
[b7d3cc34]177                        break;
178                }
179       
[0da65d5]180        connections = g_slist_remove( connections, ic );
181        g_free( ic );
[b7d3cc34]182}
183
[aef4828]184static void serv_got_crap( struct im_connection *ic, char *format, ... )
[b7d3cc34]185{
186        va_list params;
[e27661d]187        char *text;
[dfde8e0]188        account_t *a;
[b7d3cc34]189       
190        va_start( params, format );
[e27661d]191        text = g_strdup_vprintf( format, params );
[b7d3cc34]192        va_end( params );
193
[81e04e1]194        if( ( g_strcasecmp( set_getstr( &ic->bee->set, "strip_html" ), "always" ) == 0 ) ||
195            ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->bee->set, "strip_html" ) ) )
[e27661d]196                strip_html( text );
[b7d3cc34]197       
[dfde8e0]198        /* Try to find a different connection on the same protocol. */
[81e04e1]199        for( a = ic->bee->accounts; a; a = a->next )
[0da65d5]200                if( a->prpl == ic->acc->prpl && a->ic != ic )
[dfde8e0]201                        break;
202       
[e27661d]203        /* If we found one, include the screenname in the message. */
[dfde8e0]204        if( a )
[81e04e1]205                /* FIXME(wilmer): ui_log callback or so */
206                irc_usermsg( ic->bee->ui_data, "%s(%s) - %s", ic->acc->prpl->name, ic->acc->user, text );
[dfde8e0]207        else
[81e04e1]208                irc_usermsg( ic->bee->ui_data, "%s - %s", ic->acc->prpl->name, text );
[7b07dc6]209       
[e27661d]210        g_free( text );
[b7d3cc34]211}
212
[84b045d]213void imcb_log( struct im_connection *ic, char *format, ... )
[aef4828]214{
215        va_list params;
216        char *text;
217       
218        va_start( params, format );
219        text = g_strdup_vprintf( format, params );
220        va_end( params );
221       
222        if( ic->flags & OPT_LOGGED_IN )
223                serv_got_crap( ic, "%s", text );
224        else
225                serv_got_crap( ic, "Logging in: %s", text );
226       
227        g_free( text );
228}
229
[84b045d]230void imcb_error( struct im_connection *ic, char *format, ... )
[aef4828]231{
232        va_list params;
233        char *text;
234       
235        va_start( params, format );
236        text = g_strdup_vprintf( format, params );
237        va_end( params );
238       
239        if( ic->flags & OPT_LOGGED_IN )
240                serv_got_crap( ic, "Error: %s", text );
241        else
242                serv_got_crap( ic, "Couldn't log in: %s", text );
243       
244        g_free( text );
245}
246
[ba9edaa]247static gboolean send_keepalive( gpointer d, gint fd, b_input_condition cond )
[b7d3cc34]248{
[0da65d5]249        struct im_connection *ic = d;
[b7d3cc34]250       
[0da65d5]251        if( ic->acc->prpl->keepalive )
252                ic->acc->prpl->keepalive( ic );
[b7d3cc34]253       
254        return TRUE;
255}
256
[84b045d]257void imcb_connected( struct im_connection *ic )
[b7d3cc34]258{
259        /* MSN servers sometimes redirect you to a different server and do
[84c1a0a]260           the whole login sequence again, so these "late" calls to this
[b7d3cc34]261           function should be handled correctly. (IOW, ignored) */
[0da65d5]262        if( ic->flags & OPT_LOGGED_IN )
[b7d3cc34]263                return;
264       
[84b045d]265        imcb_log( ic, "Logged in" );
[b7d3cc34]266       
[0da65d5]267        ic->keepalive = b_timeout_add( 60000, send_keepalive, ic );
268        ic->flags |= OPT_LOGGED_IN;
[b7d3cc34]269       
[58adb7e]270        /* Necessary to send initial presence status, even if we're not away. */
271        imc_away_send_update( ic );
[280e655]272       
273        /* Apparently we're connected successfully, so reset the
274           exponential backoff timer. */
275        ic->acc->auto_reconnect_delay = 0;
[3611717]276       
[10a96f4]277        /*
[3611717]278        for( c = irc->chatrooms; c; c = c->next )
279        {
280                if( c->acc != ic->acc )
281                        continue;
282               
283                if( set_getbool( &c->set, "auto_join" ) )
[94acdd0]284                        chat_join( irc, c, NULL );
[3611717]285        }
[10a96f4]286        */
[b7d3cc34]287}
288
[ba9edaa]289gboolean auto_reconnect( gpointer data, gint fd, b_input_condition cond )
[b7d3cc34]290{
291        account_t *a = data;
292       
293        a->reconnect = 0;
[81e04e1]294        account_on( a->bee, a );
[b7d3cc34]295       
296        return( FALSE );        /* Only have to run the timeout once */
297}
298
299void cancel_auto_reconnect( account_t *a )
300{
[c98be00]301        b_event_remove( a->reconnect );
[b7d3cc34]302        a->reconnect = 0;
303}
304
[c2fb3809]305void imc_logout( struct im_connection *ic, int allow_reconnect )
[b7d3cc34]306{
[81e04e1]307        bee_t *bee = ic->bee;
[b7d3cc34]308        account_t *a;
[81e04e1]309        GSList *l;
[4230221]310        int delay;
[b7d3cc34]311       
[8d74291]312        /* Nested calls might happen sometimes, this is probably the best
313           place to catch them. */
[0da65d5]314        if( ic->flags & OPT_LOGGING_OUT )
[8d74291]315                return;
[66f783f]316        else
[0da65d5]317                ic->flags |= OPT_LOGGING_OUT;
[8d74291]318       
[84b045d]319        imcb_log( ic, "Signing off.." );
[fb62f81f]320       
[0da65d5]321        b_event_remove( ic->keepalive );
322        ic->keepalive = 0;
323        ic->acc->prpl->logout( ic );
324        b_event_remove( ic->inpa );
[b7d3cc34]325       
[c0c43fb]326        g_free( ic->away );
327        ic->away = NULL;
328       
[eabc9d2]329        for( l = bee->users; l; )
[b7d3cc34]330        {
[81e04e1]331                bee_user_t *bu = l->data;
[eabc9d2]332                GSList *next = l->next;
[81e04e1]333               
334                if( bu->ic == ic )
[eabc9d2]335                        bee_user_free( bee, bu );
336               
337                l = next;
[b7d3cc34]338        }
339       
[81e04e1]340        //query_del_by_conn( ic->irc, ic );
[b7d3cc34]341       
[81e04e1]342        for( a = bee->accounts; a; a = a->next )
[0da65d5]343                if( a->ic == ic )
[b7d3cc34]344                        break;
345       
346        if( !a )
347        {
348                /* Uhm... This is very sick. */
349        }
[81e04e1]350        else if( allow_reconnect && set_getbool( &bee->set, "auto_reconnect" ) &&
[4230221]351                 set_getbool( &a->set, "auto_reconnect" ) &&
352                 ( delay = account_reconnect_delay( a ) ) > 0 )
[b7d3cc34]353        {
[84b045d]354                imcb_log( ic, "Reconnecting in %d seconds..", delay );
[c98be00]355                a->reconnect = b_timeout_add( delay * 1000, auto_reconnect, a );
[b7d3cc34]356        }
357       
[aef4828]358        imc_free( ic );
[b7d3cc34]359}
360
[9143aeb]361void imcb_ask( struct im_connection *ic, char *msg, void *data,
362               query_callback doit, query_callback dont )
[b7d3cc34]363{
[e00da63]364        query_add( (irc_t *) ic->bee->ui_data, ic, msg, doit, dont, data );
[b7d3cc34]365}
366
[c6ca3ee]367void imcb_add_buddy( struct im_connection *ic, const char *handle, const char *group )
[b7d3cc34]368{
[81e04e1]369        bee_user_t *bu;
370        bee_t *bee = ic->bee;
[b7d3cc34]371       
[81e04e1]372        if( bee_user_by_handle( bee, ic, handle ) )
[b7d3cc34]373        {
[81e04e1]374                if( set_getbool( &bee->set, "debug" ) )
[84b045d]375                        imcb_log( ic, "User already exists, ignoring add request: %s", handle );
[b7d3cc34]376               
377                return;
378               
[f0cb961]379                /* Buddy seems to exist already. Let's ignore this request then...
380                   Eventually subsequent calls to this function *should* be possible
381                   when a buddy is in multiple groups. But for now BitlBee doesn't
382                   even support groups so let's silently ignore this for now. */
[b7d3cc34]383        }
384       
[81e04e1]385        bu = bee_user_new( bee, ic, handle );
386        bu->group = g_strdup( group );
[b7d3cc34]387}
388
[1d39159]389void imcb_rename_buddy( struct im_connection *ic, const char *handle, const char *fullname )
[b7d3cc34]390{
[1d39159]391        bee_t *bee = ic->bee;
392        bee_user_t *bu = bee_user_by_handle( bee, ic, handle );
[b7d3cc34]393       
[1d39159]394        if( !bu || !fullname ) return;
[b7d3cc34]395       
[17a6ee9]396        if( !bu->fullname || strcmp( bu->fullname, fullname ) != 0 )
[b7d3cc34]397        {
[1d39159]398                g_free( bu->fullname );
399                bu->fullname = g_strdup( fullname );
[b7d3cc34]400               
[1d39159]401                if( bee->ui->user_fullname )
402                        bee->ui->user_fullname( bee, bu );
[b7d3cc34]403        }
404}
405
[c6ca3ee]406void imcb_remove_buddy( struct im_connection *ic, const char *handle, char *group )
[998b103]407{
[eabc9d2]408        bee_user_free( ic->bee, bee_user_by_handle( ic->bee, ic, handle ) );
[998b103]409}
410
[d06eabf]411/* Mainly meant for ICQ (and now also for Jabber conferences) to allow IM
412   modules to suggest a nickname for a handle. */
[fb00989]413void imcb_buddy_nick_hint( struct im_connection *ic, const char *handle, const char *nick )
[d06eabf]414{
[81e04e1]415#if 0
[d06eabf]416        user_t *u = user_findhandle( ic, handle );
[43d8cc5]417        char newnick[MAX_NICK_LENGTH+1], *orig_nick;
[d06eabf]418       
[e0e2a71]419        if( u && !u->online && !nick_saved( ic->acc, handle ) )
[d06eabf]420        {
421                /* Only do this if the person isn't online yet (which should
422                   be the case if we just added it) and if the user hasn't
423                   assigned a nickname to this buddy already. */
424               
[e0e2a71]425                strncpy( newnick, nick, MAX_NICK_LENGTH );
426                newnick[MAX_NICK_LENGTH] = 0;
[d06eabf]427               
428                /* Some processing to make sure this string is a valid IRC nickname. */
429                nick_strip( newnick );
[81e04e1]430                if( set_getbool( &ic->bee->set, "lcnicks" ) )
[d06eabf]431                        nick_lc( newnick );
432               
[1962ac1]433                if( strcmp( u->nick, newnick ) != 0 )
434                {
435                        /* Only do this if newnick is different from the current one.
436                           If rejoining a channel, maybe we got this nick already
437                           (and dedupe would only add an underscore. */
438                        nick_dedupe( ic->acc, handle, newnick );
439                       
440                        /* u->nick will be freed halfway the process, so it can't be
441                           passed as an argument. */
442                        orig_nick = g_strdup( u->nick );
443                        user_rename( ic->irc, orig_nick, newnick );
444                        g_free( orig_nick );
445                }
[d06eabf]446        }
[81e04e1]447#endif
[d06eabf]448}
[b7d3cc34]449
450
[fa295e36]451struct imcb_ask_cb_data
[7bf0f5f0]452{
[0da65d5]453        struct im_connection *ic;
[7bf0f5f0]454        char *handle;
455};
456
[fa295e36]457static void imcb_ask_auth_cb_no( void *data )
[7bf0f5f0]458{
[fa295e36]459        struct imcb_ask_cb_data *cbd = data;
460       
461        cbd->ic->acc->prpl->auth_deny( cbd->ic, cbd->handle );
462       
463        g_free( cbd->handle );
464        g_free( cbd );
465}
466
467static void imcb_ask_auth_cb_yes( void *data )
468{
469        struct imcb_ask_cb_data *cbd = data;
470       
471        cbd->ic->acc->prpl->auth_allow( cbd->ic, cbd->handle );
472       
473        g_free( cbd->handle );
474        g_free( cbd );
475}
476
477void imcb_ask_auth( struct im_connection *ic, const char *handle, const char *realname )
478{
479        struct imcb_ask_cb_data *data = g_new0( struct imcb_ask_cb_data, 1 );
480        char *s, *realname_ = NULL;
481       
482        if( realname != NULL )
483                realname_ = g_strdup_printf( " (%s)", realname );
484       
485        s = g_strdup_printf( "The user %s%s wants to add you to his/her buddy list.",
486                             handle, realname_ ?: "" );
487       
488        g_free( realname_ );
489       
490        data->ic = ic;
491        data->handle = g_strdup( handle );
[e00da63]492        query_add( (irc_t *) ic->bee->ui_data, ic, s,
493                   imcb_ask_auth_cb_yes, imcb_ask_auth_cb_no, data );
[fa295e36]494}
495
496
497static void imcb_ask_add_cb_no( void *data )
498{
499        g_free( ((struct imcb_ask_cb_data*)data)->handle );
[7bf0f5f0]500        g_free( data );
501}
502
[fa295e36]503static void imcb_ask_add_cb_yes( void *data )
[7bf0f5f0]504{
[fa295e36]505        struct imcb_ask_cb_data *cbd = data;
[7bf0f5f0]506       
[fa295e36]507        cbd->ic->acc->prpl->add_buddy( cbd->ic, cbd->handle, NULL );
[9143aeb]508       
[fa295e36]509        return imcb_ask_add_cb_no( data );
[7bf0f5f0]510}
511
[fa295e36]512void imcb_ask_add( struct im_connection *ic, const char *handle, const char *realname )
[b7d3cc34]513{
[fa295e36]514        struct imcb_ask_cb_data *data = g_new0( struct imcb_ask_cb_data, 1 );
[7bf0f5f0]515        char *s;
516       
517        /* TODO: Make a setting for this! */
[e00da63]518        if( bee_user_by_handle( ic->bee, ic, handle ) != NULL )
[7bf0f5f0]519                return;
520       
521        s = g_strdup_printf( "The user %s is not in your buddy list yet. Do you want to add him/her now?", handle );
522       
[0da65d5]523        data->ic = ic;
[7bf0f5f0]524        data->handle = g_strdup( handle );
[e00da63]525        query_add( (irc_t *) ic->bee->ui_data, ic, s,
526                   imcb_ask_add_cb_yes, imcb_ask_add_cb_no, data );
[b7d3cc34]527}
528
[52744f8]529void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags )
[b7d3cc34]530{
[81e04e1]531#if 0
[b7d3cc34]532        user_t *u;
533       
[81e04e1]534        if( !set_getbool( &ic->bee->set, "typing_notice" ) )
[b7d3cc34]535                return;
536       
[9624fdf]537        if( ( u = user_findhandle( ic, handle ) ) )
538        {
539                char buf[256];
540               
541                g_snprintf( buf, 256, "\1TYPING %d\1", ( flags >> 8 ) & 3 );
542                irc_privmsg( ic->irc, u, "PRIVMSG", ic->irc->nick, NULL, buf );
[e7f46c5]543        }
[81e04e1]544#endif
545}
546
547struct bee_user *imcb_buddy_by_handle( struct im_connection *ic, const char *handle )
548{
549        return bee_user_by_handle( ic->bee, ic, handle );
[b7d3cc34]550}
551
[94acdd0]552struct groupchat *imcb_chat_new( struct im_connection *ic, const char *handle )
[83ba3e5]553{
[81e04e1]554#if 0
[83ba3e5]555        struct groupchat *c;
556       
557        /* This one just creates the conversation structure, user won't see anything yet */
558       
559        if( ic->groupchats )
560        {
561                for( c = ic->groupchats; c->next; c = c->next );
562                c = c->next = g_new0( struct groupchat, 1 );
563        }
564        else
565                ic->groupchats = c = g_new0( struct groupchat, 1 );
566       
567        c->ic = ic;
568        c->title = g_strdup( handle );
569        c->channel = g_strdup_printf( "&chat_%03d", ic->irc->c_id++ );
570        c->topic = g_strdup_printf( "BitlBee groupchat: \"%s\". Please keep in mind that root-commands won't work here. Have fun!", c->title );
571       
[81e04e1]572        if( set_getbool( &ic->bee->set, "debug" ) )
[83ba3e5]573                imcb_log( ic, "Creating new conversation: (id=%p,handle=%s)", c, handle );
574       
575        return c;
[81e04e1]576#endif
[fb117aee]577        return NULL;
[83ba3e5]578}
579
[e35d1a1]580void imcb_chat_free( struct groupchat *c )
[b7d3cc34]581{
[81e04e1]582#if 0
[0da65d5]583        struct im_connection *ic = c->ic;
[e35d1a1]584        struct groupchat *l;
[b7d3cc34]585        GList *ir;
586       
[81e04e1]587        if( set_getbool( &ic->bee->set, "debug" ) )
[56f260a]588                imcb_log( ic, "You were removed from conversation %p", c );
[b7d3cc34]589       
590        if( c )
591        {
592                if( c->joined )
593                {
594                        user_t *u, *r;
595                       
[0da65d5]596                        r = user_find( ic->irc, ic->irc->mynick );
597                        irc_privmsg( ic->irc, r, "PRIVMSG", c->channel, "", "Cleaning up channel, bye!" );
[b7d3cc34]598                       
[0da65d5]599                        u = user_find( ic->irc, ic->irc->nick );
600                        irc_kick( ic->irc, u, c->channel, r );
601                        /* irc_part( ic->irc, u, c->channel ); */
[b7d3cc34]602                }
603               
[e35d1a1]604                /* Find the previous chat in the linked list. */
605                for( l = ic->groupchats; l && l->next != c; l = l->next );
606               
[b7d3cc34]607                if( l )
608                        l->next = c->next;
609                else
[e35d1a1]610                        ic->groupchats = c->next;
[b7d3cc34]611               
612                for( ir = c->in_room; ir; ir = ir->next )
613                        g_free( ir->data );
614                g_list_free( c->in_room );
615                g_free( c->channel );
616                g_free( c->title );
[83ba3e5]617                g_free( c->topic );
[b7d3cc34]618                g_free( c );
619        }
[81e04e1]620#endif
[b7d3cc34]621}
622
[c6ca3ee]623void imcb_chat_msg( struct groupchat *c, const char *who, char *msg, uint32_t flags, time_t sent_at )
[b7d3cc34]624{
[81e04e1]625#if 0
[0da65d5]626        struct im_connection *ic = c->ic;
[d444c09]627        char *wrapped;
[b7d3cc34]628        user_t *u;
629       
630        /* Gaim sends own messages through this too. IRC doesn't want this, so kill them */
[c2fb3809]631        if( g_strcasecmp( who, ic->acc->user ) == 0 )
[b7d3cc34]632                return;
633       
[0da65d5]634        u = user_findhandle( ic, who );
[b7d3cc34]635       
[81e04e1]636        if( ( g_strcasecmp( set_getstr( &ic->bee->set, "strip_html" ), "always" ) == 0 ) ||
637            ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->bee->set, "strip_html" ) ) )
[b7d3cc34]638                strip_html( msg );
639       
[d444c09]640        wrapped = word_wrap( msg, 425 );
[b7d3cc34]641        if( c && u )
[d444c09]642        {
643                irc_privmsg( ic->irc, u, "PRIVMSG", c->channel, "", wrapped );
644        }
[b7d3cc34]645        else
[d444c09]646        {
[56f260a]647                imcb_log( ic, "Message from/to conversation %s@%p (unknown conv/user): %s", who, c, wrapped );
[d444c09]648        }
649        g_free( wrapped );
[81e04e1]650#endif
[b7d3cc34]651}
652
[31e5846]653void imcb_chat_log( struct groupchat *c, char *format, ... )
654{
[81e04e1]655#if 0
[31e5846]656        irc_t *irc = c->ic->irc;
657        va_list params;
658        char *text;
659        user_t *u;
660       
661        va_start( params, format );
662        text = g_strdup_vprintf( format, params );
663        va_end( params );
664       
665        u = user_find( irc, irc->mynick );
666       
667        irc_privmsg( irc, u, "PRIVMSG", c->channel, "System message: ", text );
668       
669        g_free( text );
[81e04e1]670#endif
[31e5846]671}
672
[ef5c185]673void imcb_chat_topic( struct groupchat *c, char *who, char *topic, time_t set_at )
[50e1776]674{
[81e04e1]675#if 0
[50e1776]676        struct im_connection *ic = c->ic;
677        user_t *u = NULL;
678       
679        if( who == NULL)
[ef5c185]680                u = user_find( ic->irc, ic->irc->mynick );
[50e1776]681        else if( g_strcasecmp( who, ic->acc->user ) == 0 )
[ef5c185]682                u = user_find( ic->irc, ic->irc->nick );
[50e1776]683        else
684                u = user_findhandle( ic, who );
685       
[81e04e1]686        if( ( g_strcasecmp( set_getstr( &ic->bee->set, "strip_html" ), "always" ) == 0 ) ||
687            ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->bee->set, "strip_html" ) ) )
[50e1776]688                strip_html( topic );
689       
690        g_free( c->topic );
691        c->topic = g_strdup( topic );
692       
693        if( c->joined && u )
694                irc_write( ic->irc, ":%s!%s@%s TOPIC %s :%s", u->nick, u->user, u->host, c->channel, topic );
[81e04e1]695#endif
[50e1776]696}
697
[c6ca3ee]698void imcb_chat_add_buddy( struct groupchat *b, const char *handle )
[b7d3cc34]699{
[81e04e1]700#if 0
[0da65d5]701        user_t *u = user_findhandle( b->ic, handle );
[b7d3cc34]702        int me = 0;
703       
[81e04e1]704        if( set_getbool( &b->ic->bee->set, "debug" ) )
[56f260a]705                imcb_log( b->ic, "User %s added to conversation %p", handle, b );
[b7d3cc34]706       
707        /* It might be yourself! */
[c2fb3809]708        if( b->ic->acc->prpl->handle_cmp( handle, b->ic->acc->user ) == 0 )
[b7d3cc34]709        {
[0da65d5]710                u = user_find( b->ic->irc, b->ic->irc->nick );
[b7d3cc34]711                if( !b->joined )
[0da65d5]712                        irc_join( b->ic->irc, u, b->channel );
[b7d3cc34]713                b->joined = me = 1;
714        }
715       
716        /* Most protocols allow people to join, even when they're not in
717           your contact list. Try to handle that here */
718        if( !u )
719        {
[f0cb961]720                imcb_add_buddy( b->ic, handle, NULL );
[0da65d5]721                u = user_findhandle( b->ic, handle );
[b7d3cc34]722        }
723       
724        /* Add the handle to the room userlist, if it's not 'me' */
725        if( !me )
726        {
727                if( b->joined )
[0da65d5]728                        irc_join( b->ic->irc, u, b->channel );
[b7d3cc34]729                b->in_room = g_list_append( b->in_room, g_strdup( handle ) );
730        }
[81e04e1]731#endif
[b7d3cc34]732}
733
[2d317bb]734/* This function is one BIG hack... :-( EREWRITE */
[c6ca3ee]735void imcb_chat_remove_buddy( struct groupchat *b, const char *handle, const char *reason )
[b7d3cc34]736{
[81e04e1]737#if 0
[b7d3cc34]738        user_t *u;
739        int me = 0;
740       
[81e04e1]741        if( set_getbool( &b->ic->bee->set, "debug" ) )
[56f260a]742                imcb_log( b->ic, "User %s removed from conversation %p (%s)", handle, b, reason ? reason : "" );
[b7d3cc34]743       
744        /* It might be yourself! */
[c2fb3809]745        if( g_strcasecmp( handle, b->ic->acc->user ) == 0 )
[b7d3cc34]746        {
[2d317bb]747                if( b->joined == 0 )
748                        return;
749               
[0da65d5]750                u = user_find( b->ic->irc, b->ic->irc->nick );
[b7d3cc34]751                b->joined = 0;
752                me = 1;
753        }
754        else
755        {
[0da65d5]756                u = user_findhandle( b->ic, handle );
[b7d3cc34]757        }
758       
[2d317bb]759        if( me || ( remove_chat_buddy_silent( b, handle ) && b->joined && u ) )
760                irc_part( b->ic->irc, u, b->channel );
[81e04e1]761#endif
[b7d3cc34]762}
763
[fb117aee]764#if 0
[764b163d]765static int remove_chat_buddy_silent( struct groupchat *b, const char *handle )
[b7d3cc34]766{
767        GList *i;
768       
769        /* Find the handle in the room userlist and shoot it */
770        i = b->in_room;
771        while( i )
772        {
773                if( g_strcasecmp( handle, i->data ) == 0 )
774                {
775                        g_free( i->data );
776                        b->in_room = g_list_remove( b->in_room, i->data );
777                        return( 1 );
778                }
779               
780                i = i->next;
781        }
782       
[81e04e1]783        return 0;
[b7d3cc34]784}
[fb117aee]785#endif
[b7d3cc34]786
787
788/* Misc. BitlBee stuff which shouldn't really be here */
[81e04e1]789#if 0
[5c9512f]790char *set_eval_away_devoice( set_t *set, char *value )
[b7d3cc34]791{
[5c9512f]792        irc_t *irc = set->data;
[b7d3cc34]793        int st;
794       
[7125cb3]795        if( !is_bool( value ) )
796                return SET_INVALID;
[b7d3cc34]797       
[7125cb3]798        st = bool2int( value );
[b7d3cc34]799       
800        /* Horror.... */
801       
[10a96f4]802        if( st != set_getbool( &irc->b->set, "away_devoice" ) )
[b7d3cc34]803        {
804                char list[80] = "";
805                user_t *u = irc->users;
806                int i = 0, count = 0;
807                char pm;
808                char v[80];
809               
810                if( st )
811                        pm = '+';
812                else
813                        pm = '-';
814               
815                while( u )
816                {
[0da65d5]817                        if( u->ic && u->online && !u->away )
[b7d3cc34]818                        {
819                                if( ( strlen( list ) + strlen( u->nick ) ) >= 79 )
820                                {
821                                        for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0;
[2087159]822                                        irc_write( irc, ":%s MODE %s %c%s%s",
823                                                   irc->myhost,
[b7d3cc34]824                                                   irc->channel, pm, v, list );
825                                       
826                                        *list = 0;
827                                        count = 0;
828                                }
829                               
830                                sprintf( list + strlen( list ), " %s", u->nick );
831                                count ++;
832                        }
833                        u = u->next;
834                }
835               
836                /* $v = 'v' x $i */
837                for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0;
[2087159]838                irc_write( irc, ":%s MODE %s %c%s%s", irc->myhost,
[b7d3cc34]839                                                            irc->channel, pm, v, list );
840        }
841       
[7125cb3]842        return value;
[b7d3cc34]843}
[81e04e1]844#endif
[226fce1]845
846
847
848/* The plan is to not allow straight calls to prpl functions anymore, but do
849   them all from some wrappers. We'll start to define some down here: */
850
[84b045d]851int imc_chat_msg( struct groupchat *c, char *msg, int flags )
[b7d3cc34]852{
[e27661d]853        char *buf = NULL;
[b7d3cc34]854       
[6bbb939]855        if( ( c->ic->flags & OPT_DOES_HTML ) && ( g_strncasecmp( msg, "<html>", 6 ) != 0 ) )
[e27661d]856        {
857                buf = escape_html( msg );
[b7d3cc34]858                msg = buf;
859        }
860       
[f6c963b]861        c->ic->acc->prpl->chat_msg( c, msg, flags );
[e27661d]862        g_free( buf );
863       
[0da65d5]864        return 1;
[b7d3cc34]865}
[226fce1]866
[34fbbf9]867static char *imc_away_state_find( GList *gcm, char *away, char **message );
[226fce1]868
[58adb7e]869int imc_away_send_update( struct im_connection *ic )
[226fce1]870{
[3e1ef92c]871        char *away, *msg = NULL;
[226fce1]872       
[58adb7e]873        away = set_getstr( &ic->acc->set, "away" ) ?
[81e04e1]874             : set_getstr( &ic->bee->set, "away" );
[34fbbf9]875        if( away && *away )
[226fce1]876        {
[34fbbf9]877                GList *m = ic->acc->prpl->away_states( ic );
[58adb7e]878                msg = ic->acc->flags & ACC_FLAG_AWAY_MESSAGE ? away : NULL;
879                away = imc_away_state_find( m, away, &msg ) ? : m->data;
880        }
881        else if( ic->acc->flags & ACC_FLAG_STATUS_MESSAGE )
882        {
883                away = NULL;
884                msg = set_getstr( &ic->acc->set, "status" ) ?
[81e04e1]885                    : set_getstr( &ic->bee->set, "status" );
[226fce1]886        }
887       
[58adb7e]888        ic->acc->prpl->set_away( ic, away, msg );
[226fce1]889       
[34fbbf9]890        return 1;
[226fce1]891}
892
[84b045d]893static char *imc_away_alias_list[8][5] =
[226fce1]894{
895        { "Away from computer", "Away", "Extended away", NULL },
896        { "NA", "N/A", "Not available", NULL },
897        { "Busy", "Do not disturb", "DND", "Occupied", NULL },
898        { "Be right back", "BRB", NULL },
899        { "On the phone", "Phone", "On phone", NULL },
900        { "Out to lunch", "Lunch", "Food", NULL },
901        { "Invisible", "Hidden" },
902        { NULL }
903};
904
[34fbbf9]905static char *imc_away_state_find( GList *gcm, char *away, char **message )
[226fce1]906{
907        GList *m;
908        int i, j;
909       
[34fbbf9]910        for( m = gcm; m; m = m->next )
911                if( g_strncasecmp( m->data, away, strlen( m->data ) ) == 0 )
912                {
913                        /* At least the Yahoo! module works better if message
914                           contains no data unless it adds something to what
915                           we have in state already. */
916                        if( strlen( m->data ) == strlen( away ) )
917                                *message = NULL;
918                       
919                        return m->data;
920                }
921       
[84b045d]922        for( i = 0; *imc_away_alias_list[i]; i ++ )
[226fce1]923        {
[34fbbf9]924                int keep_message;
925               
[84b045d]926                for( j = 0; imc_away_alias_list[i][j]; j ++ )
927                        if( g_strncasecmp( away, imc_away_alias_list[i][j], strlen( imc_away_alias_list[i][j] ) ) == 0 )
[34fbbf9]928                        {
929                                keep_message = strlen( away ) != strlen( imc_away_alias_list[i][j] );
[226fce1]930                                break;
[34fbbf9]931                        }
[226fce1]932               
[84b045d]933                if( !imc_away_alias_list[i][j] )        /* If we reach the end, this row */
[226fce1]934                        continue;                       /* is not what we want. Next!    */
935               
936                /* Now find an entry in this row which exists in gcm */
[84b045d]937                for( j = 0; imc_away_alias_list[i][j]; j ++ )
[226fce1]938                {
[34fbbf9]939                        for( m = gcm; m; m = m->next )
[84b045d]940                                if( g_strcasecmp( imc_away_alias_list[i][j], m->data ) == 0 )
[34fbbf9]941                                {
942                                        if( !keep_message )
943                                                *message = NULL;
944                                       
945                                        return imc_away_alias_list[i][j];
946                                }
[226fce1]947                }
[34fbbf9]948               
949                /* No need to look further, apparently this state doesn't
950                   have any good alias for this protocol. */
951                break;
[226fce1]952        }
953       
[34fbbf9]954        return NULL;
[226fce1]955}
[da3b536]956
[84b045d]957void imc_add_allow( struct im_connection *ic, char *handle )
[da3b536]958{
[0da65d5]959        if( g_slist_find_custom( ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) == NULL )
[da3b536]960        {
[0da65d5]961                ic->permit = g_slist_prepend( ic->permit, g_strdup( handle ) );
[da3b536]962        }
963       
[0da65d5]964        ic->acc->prpl->add_permit( ic, handle );
[da3b536]965}
966
[84b045d]967void imc_rem_allow( struct im_connection *ic, char *handle )
[da3b536]968{
969        GSList *l;
970       
[0da65d5]971        if( ( l = g_slist_find_custom( ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) ) )
[da3b536]972        {
973                g_free( l->data );
[0da65d5]974                ic->permit = g_slist_delete_link( ic->permit, l );
[da3b536]975        }
976       
[0da65d5]977        ic->acc->prpl->rem_permit( ic, handle );
[da3b536]978}
979
[84b045d]980void imc_add_block( struct im_connection *ic, char *handle )
[da3b536]981{
[0da65d5]982        if( g_slist_find_custom( ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) == NULL )
[da3b536]983        {
[0da65d5]984                ic->deny = g_slist_prepend( ic->deny, g_strdup( handle ) );
[da3b536]985        }
986       
[0da65d5]987        ic->acc->prpl->add_deny( ic, handle );
[da3b536]988}
989
[84b045d]990void imc_rem_block( struct im_connection *ic, char *handle )
[da3b536]991{
992        GSList *l;
993       
[0da65d5]994        if( ( l = g_slist_find_custom( ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) ) )
[da3b536]995        {
996                g_free( l->data );
[0da65d5]997                ic->deny = g_slist_delete_link( ic->deny, l );
[da3b536]998        }
999       
[0da65d5]1000        ic->acc->prpl->rem_deny( ic, handle );
[da3b536]1001}
[85023c6]1002
1003void imcb_clean_handle( struct im_connection *ic, char *handle )
1004{
1005        /* Accepts a handle and does whatever is necessary to make it
1006           BitlBee-friendly. Currently this means removing everything
1007           outside 33-127 (ASCII printable excl spaces), @ (only one
1008           is allowed) and ! and : */
1009        char out[strlen(handle)+1];
1010        int s, d;
1011       
1012        s = d = 0;
1013        while( handle[s] )
1014        {
1015                if( handle[s] > ' ' && handle[s] != '!' && handle[s] != ':' &&
1016                    ( handle[s] & 0x80 ) == 0 )
1017                {
1018                        if( handle[s] == '@' )
1019                        {
1020                                /* See if we got an @ already? */
1021                                out[d] = 0;
1022                                if( strchr( out, '@' ) )
1023                                        continue;
1024                        }
1025                       
1026                        out[d++] = handle[s];
1027                }
1028                s ++;
1029        }
1030        out[d] = handle[s];
1031       
1032        strcpy( handle, out );
1033}
Note: See TracBrowser for help on using the repository browser.