source: protocols/nogaim.c @ 88b3a07

Last change on this file since 88b3a07 was 88b3a07, checked in by Wilmer van der Gaast <wilmer@…>, at 2006-04-13T07:15:42Z

Cleaned up two more functions from nogaim.

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