source: protocols/nogaim.c @ c377417

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

Added imcb_remove_buddy() so deletions in Jabber roster pushes actually
work. This also solves the issue of underscores appearing and disappearing
in their nicknames when people leave/join a chat.

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