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 | |
---|
28 | struct 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 | |
---|
62 | struct 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 | |
---|
75 | struct 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 | |
---|
88 | struct chat *chat_get( irc_t *irc, char *id ) |
---|
89 | { |
---|
90 | struct chat *c, *ret = NULL; |
---|
91 | int nr; |
---|
92 | |
---|
93 | if( sscanf( id, "%d", &nr ) == 1 && nr < 1000 ) |
---|
94 | { |
---|
95 | for( c = irc->chatrooms; c; c = c->next ) |
---|
96 | if( ( nr-- ) == 0 ) |
---|
97 | return c; |
---|
98 | |
---|
99 | return NULL; |
---|
100 | } |
---|
101 | |
---|
102 | for( c = irc->chatrooms; c; c = c->next ) |
---|
103 | { |
---|
104 | if( strstr( c->handle, id ) ) |
---|
105 | { |
---|
106 | if( !ret ) |
---|
107 | ret = c; |
---|
108 | else |
---|
109 | return NULL; |
---|
110 | } |
---|
111 | else if( strstr( c->channel, id ) ) |
---|
112 | { |
---|
113 | if( !ret ) |
---|
114 | ret = c; |
---|
115 | else |
---|
116 | return NULL; |
---|
117 | } |
---|
118 | } |
---|
119 | |
---|
120 | return ret; |
---|
121 | } |
---|
122 | |
---|
123 | int chat_chancmp( char *a, char *b ) |
---|
124 | { |
---|
125 | if( !chat_chanok( a ) || !chat_chanok( b ) ) |
---|
126 | return 0; |
---|
127 | |
---|
128 | if( a[0] == b[0] ) |
---|
129 | return nick_cmp( a + 1, b + 1 ); |
---|
130 | else |
---|
131 | return -1; |
---|
132 | } |
---|
133 | |
---|
134 | int chat_chanok( char *a ) |
---|
135 | { |
---|
136 | if( strchr( "&#", a[0] ) != NULL ) |
---|
137 | return nick_ok( a + 1 ); |
---|
138 | else |
---|
139 | return 0; |
---|
140 | } |
---|