source: chat.c @ 39f93f0

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

/join can now be used to join chatrooms, join_chat should not be used
anymore. /join should not be used for unnamed groupchats anymore, use
"chat with" instead.

  • Property mode set to 100644
File size: 3.2 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
[ad9feec]128int chat_chancmp( char *a, char *b )
129{
130        if( !chat_chanok( a ) || !chat_chanok( b ) )
131                return 0;
132       
133        if( a[0] == b[0] )
134                return nick_cmp( a + 1, b + 1 );
135        else
136                return -1;
137}
138
139int chat_chanok( char *a )
140{
[39f93f0]141        if( strchr( CTYPES, a[0] ) != NULL )
[ad9feec]142                return nick_ok( a + 1 );
143        else
144                return 0;
145}
Note: See TracBrowser for help on using the repository browser.