source: chat.c @ ad9feec

Last change on this file since ad9feec was ad9feec, checked in by Wilmer van der Gaast <wilmer@…>, at 2008-08-30T18:59:58Z

Added chat.c to keep track of chatrooms the user cares about.

  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[ad9feec]1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2008 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/* Keep track of chatrooms the user is interested in                    */
8
9/*
10  This program is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License with
21  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
22  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23  Suite 330, Boston, MA  02111-1307  USA
24*/
25
26#include "bitlbee.h"
27
28struct chat *chat_add( irc_t *irc, account_t *acc, char *handle, char *channel )
29{
30        struct chat *c, *l;
31       
32        if( !chat_chanok( channel ) )
33                return NULL;
34       
35        for( c = irc->chatrooms; c; c = c->next )
36        {
37                if( chat_chancmp( channel, c->channel ) == 0 )
38                        return NULL;
39               
40                if( acc == c->acc && g_strcasecmp( handle, c->handle ) == 0 )
41                        return NULL;
42               
43                l = c;
44        }
45       
46        if( irc->chatrooms == NULL )
47                irc->chatrooms = c = g_new0( struct chat, 1 );
48        else
49                l->next = c = g_new0( struct chat, 1 );
50       
51        c->acc = acc;
52        c->handle = g_strdup( handle );
53        c->channel = g_strdup( channel );
54       
55        set_add( &c->set, "auto_join", "false", set_eval_bool, c );
56        set_add( &c->set, "auto_rejoin", "false", set_eval_bool, c );
57        set_add( &c->set, "nick", NULL, NULL, c );
58       
59        return c;
60}
61
62struct chat *chat_byhandle( irc_t *irc, account_t *acc, char *handle )
63{
64        struct chat *c;
65       
66        for( c = irc->chatrooms; c; c = c->next )
67        {
68                if( acc == c->acc && g_strcasecmp( handle, c->handle ) == 0 )
69                        break;
70        }
71       
72        return c;
73}
74
75struct chat *chat_bychannel( irc_t *irc, char *channel )
76{
77        struct chat *c;
78       
79        for( c = irc->chatrooms; c; c = c->next )
80        {
81                if( chat_chancmp( channel, c->channel ) == 0 )
82                        break;
83        }
84       
85        return c;
86}
87
88int chat_chancmp( char *a, char *b )
89{
90        if( !chat_chanok( a ) || !chat_chanok( b ) )
91                return 0;
92       
93        if( a[0] == b[0] )
94                return nick_cmp( a + 1, b + 1 );
95        else
96                return -1;
97}
98
99int chat_chanok( char *a )
100{
101        if( strchr( "&#", a[0] ) != NULL )
102                return nick_ok( a + 1 );
103        else
104                return 0;
105}
Note: See TracBrowser for help on using the repository browser.