1 | /********************************************************************\ |
---|
2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
3 | * * |
---|
4 | * Copyright 2002-2004 Wilmer van der Gaast and others * |
---|
5 | \********************************************************************/ |
---|
6 | |
---|
7 | /* Questions to the user (mainly authorization requests from IM) */ |
---|
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 | #define BITLBEE_CORE |
---|
27 | #include "bitlbee.h" |
---|
28 | |
---|
29 | static void query_display( irc_t *irc, query_t *q ); |
---|
30 | static query_t *query_default( irc_t *irc ); |
---|
31 | |
---|
32 | query_t *query_add( irc_t *irc, struct im_connection *ic, char *question, |
---|
33 | query_callback yes, query_callback no, void *data ) |
---|
34 | { |
---|
35 | query_t *q = g_new0( query_t, 1 ); |
---|
36 | |
---|
37 | q->ic = ic; |
---|
38 | q->question = g_strdup( question ); |
---|
39 | q->yes = yes; |
---|
40 | q->no = no; |
---|
41 | q->data = data; |
---|
42 | |
---|
43 | if( strchr( irc->umode, 'b' ) != NULL ) |
---|
44 | { |
---|
45 | char *s; |
---|
46 | |
---|
47 | /* At least for the machine-parseable version, get rid of |
---|
48 | newlines to make "parsing" easier. */ |
---|
49 | for( s = q->question; *s; s ++ ) |
---|
50 | if( *s == '\r' || *s == '\n' ) |
---|
51 | *s = ' '; |
---|
52 | } |
---|
53 | |
---|
54 | if( irc->queries ) |
---|
55 | { |
---|
56 | query_t *l = irc->queries; |
---|
57 | |
---|
58 | while( l->next ) l = l->next; |
---|
59 | l->next = q; |
---|
60 | } |
---|
61 | else |
---|
62 | { |
---|
63 | irc->queries = q; |
---|
64 | } |
---|
65 | |
---|
66 | if( g_strcasecmp( set_getstr( &irc->b->set, "query_order" ), "lifo" ) == 0 || irc->queries == q ) |
---|
67 | query_display( irc, q ); |
---|
68 | |
---|
69 | return( q ); |
---|
70 | } |
---|
71 | |
---|
72 | void query_del( irc_t *irc, query_t *q ) |
---|
73 | { |
---|
74 | query_t *l; |
---|
75 | |
---|
76 | if( irc->queries == q ) |
---|
77 | { |
---|
78 | irc->queries = q->next; |
---|
79 | } |
---|
80 | else |
---|
81 | { |
---|
82 | for( l = irc->queries; l; l = l->next ) |
---|
83 | { |
---|
84 | if( l->next == q ) |
---|
85 | { |
---|
86 | l->next = q->next; |
---|
87 | break; |
---|
88 | } |
---|
89 | } |
---|
90 | |
---|
91 | if( !l ) |
---|
92 | return; /* Hrmmm... */ |
---|
93 | } |
---|
94 | |
---|
95 | g_free( q->question ); |
---|
96 | if( q->data ) g_free( q->data ); /* Memory leak... */ |
---|
97 | g_free( q ); |
---|
98 | } |
---|
99 | |
---|
100 | void query_del_by_conn( irc_t *irc, struct im_connection *ic ) |
---|
101 | { |
---|
102 | query_t *q, *n, *def; |
---|
103 | int count = 0; |
---|
104 | |
---|
105 | q = irc->queries; |
---|
106 | def = query_default( irc ); |
---|
107 | |
---|
108 | while( q ) |
---|
109 | { |
---|
110 | if( q->ic == ic ) |
---|
111 | { |
---|
112 | n = q->next; |
---|
113 | query_del( irc, q ); |
---|
114 | q = n; |
---|
115 | |
---|
116 | count ++; |
---|
117 | } |
---|
118 | else |
---|
119 | { |
---|
120 | q = q->next; |
---|
121 | } |
---|
122 | } |
---|
123 | |
---|
124 | if( count > 0 ) |
---|
125 | imcb_log( ic, "Flushed %d unanswered question(s) for this connection.", count ); |
---|
126 | |
---|
127 | q = query_default( irc ); |
---|
128 | if( q && q != def ) |
---|
129 | query_display( irc, q ); |
---|
130 | } |
---|
131 | |
---|
132 | void query_answer( irc_t *irc, query_t *q, int ans ) |
---|
133 | { |
---|
134 | int disp = 0; |
---|
135 | |
---|
136 | if( !q ) |
---|
137 | { |
---|
138 | q = query_default( irc ); |
---|
139 | disp = 1; |
---|
140 | } |
---|
141 | if( ans ) |
---|
142 | { |
---|
143 | if( q->ic ) |
---|
144 | imcb_log( q->ic, "Accepted: %s", q->question ); |
---|
145 | else |
---|
146 | irc_usermsg( irc, "Accepted: %s", q->question ); |
---|
147 | q->yes( q->data ); |
---|
148 | } |
---|
149 | else |
---|
150 | { |
---|
151 | if( q->ic ) |
---|
152 | imcb_log( q->ic, "Rejected: %s", q->question ); |
---|
153 | else |
---|
154 | irc_usermsg( irc, "Rejected: %s", q->question ); |
---|
155 | q->no( q->data ); |
---|
156 | } |
---|
157 | q->data = NULL; |
---|
158 | |
---|
159 | query_del( irc, q ); |
---|
160 | |
---|
161 | if( disp && ( q = query_default( irc ) ) ) |
---|
162 | query_display( irc, q ); |
---|
163 | } |
---|
164 | |
---|
165 | static void query_display( irc_t *irc, query_t *q ) |
---|
166 | { |
---|
167 | if( q->ic ) |
---|
168 | { |
---|
169 | imcb_log( q->ic, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question ); |
---|
170 | } |
---|
171 | else |
---|
172 | { |
---|
173 | irc_usermsg( irc, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question ); |
---|
174 | } |
---|
175 | } |
---|
176 | |
---|
177 | static query_t *query_default( irc_t *irc ) |
---|
178 | { |
---|
179 | query_t *q; |
---|
180 | |
---|
181 | if( g_strcasecmp( set_getstr( &irc->b->set, "query_order" ), "fifo" ) == 0 ) |
---|
182 | q = irc->queries; |
---|
183 | else |
---|
184 | for( q = irc->queries; q && q->next; q = q->next ); |
---|
185 | |
---|
186 | return( q ); |
---|
187 | } |
---|