source: chat.c @ d995c9b

Last change on this file since d995c9b was d995c9b, checked in by Wilmer van der Gaast <wilmer@…>, at 2008-08-31T14:54:39Z

Added cleanup code.

  • Property mode set to 100644
File size: 3.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;
[e7bc722]31        set_t *s;
[ad9feec]32       
33        if( !chat_chanok( channel ) )
34                return NULL;
35       
[0e639f5]36        if( chat_chancmp( channel, irc->channel ) == 0 )
37                return NULL;
38       
[ad9feec]39        for( c = irc->chatrooms; c; c = c->next )
40        {
41                if( chat_chancmp( channel, c->channel ) == 0 )
42                        return NULL;
43               
44                if( acc == c->acc && g_strcasecmp( handle, c->handle ) == 0 )
45                        return NULL;
46               
47                l = c;
48        }
49       
50        if( irc->chatrooms == NULL )
51                irc->chatrooms = c = g_new0( struct chat, 1 );
52        else
53                l->next = c = g_new0( struct chat, 1 );
54       
55        c->acc = acc;
56        c->handle = g_strdup( handle );
57        c->channel = g_strdup( channel );
58       
[e7bc722]59        s = set_add( &c->set, "auto_join", "false", set_eval_bool, c );
60        s = set_add( &c->set, "auto_rejoin", "false", set_eval_bool, c );
61        s = set_add( &c->set, "nick", NULL, NULL, c );
62        s->flags |= SET_NULL_OK;
[ad9feec]63       
64        return c;
65}
66
67struct chat *chat_byhandle( irc_t *irc, account_t *acc, char *handle )
68{
69        struct chat *c;
70       
71        for( c = irc->chatrooms; c; c = c->next )
72        {
73                if( acc == c->acc && g_strcasecmp( handle, c->handle ) == 0 )
74                        break;
75        }
76       
77        return c;
78}
79
80struct chat *chat_bychannel( irc_t *irc, char *channel )
81{
82        struct chat *c;
83       
84        for( c = irc->chatrooms; c; c = c->next )
85        {
86                if( chat_chancmp( channel, c->channel ) == 0 )
87                        break;
88        }
89       
90        return c;
91}
92
[131c6b6]93struct chat *chat_get( irc_t *irc, char *id )
94{
95        struct chat *c, *ret = NULL;
96        int nr;
97       
98        if( sscanf( id, "%d", &nr ) == 1 && nr < 1000 )
99        {
100                for( c = irc->chatrooms; c; c = c->next )
101                        if( ( nr-- ) == 0 )
102                                return c;
103               
104                return NULL;
105        }
106       
107        for( c = irc->chatrooms; c; c = c->next )
108        {
109                if( strstr( c->handle, id ) )
110                {
111                        if( !ret )
112                                ret = c;
113                        else
114                                return NULL;
115                }
116                else if( strstr( c->channel, id ) )
117                {
118                        if( !ret )
119                                ret = c;
120                        else
121                                return NULL;
122                }
123        }
124       
125        return ret;
126}
127
[d995c9b]128int chat_del( irc_t *irc, struct chat *chat )
129{
130        struct chat *c, *l = NULL;
131       
132        for( c = irc->chatrooms; c; c = (l=c)->next )
133                if( c == chat )
134                        break;
135       
136        if( c == NULL )
137                return 0;
138        else if( l == NULL )
139                irc->chatrooms = c->next;
140        else
141                l->next = c->next;
142       
143        while( c->set )
144                set_del( &c->set, c->set->key );
145       
146        g_free( c->handle );
147        g_free( c->channel );
148        g_free( c );
149       
150        return 1;
151}
152
[ad9feec]153int chat_chancmp( char *a, char *b )
154{
155        if( !chat_chanok( a ) || !chat_chanok( b ) )
156                return 0;
157       
158        if( a[0] == b[0] )
159                return nick_cmp( a + 1, b + 1 );
160        else
161                return -1;
162}
163
164int chat_chanok( char *a )
165{
[39f93f0]166        if( strchr( CTYPES, a[0] ) != NULL )
[ad9feec]167                return nick_ok( a + 1 );
168        else
169                return 0;
170}
Note: See TracBrowser for help on using the repository browser.