Mercurial > pidgin
annotate src/privacy.c @ 8442:3d0178c4f390
[gaim-migrate @ 9172]
" This is that thing Sean told me to do. Well part of it.
We now are careful to send html to gtkimhtml when
sending a message, while still sending plain text to
those protocols that need it. We send the fancy html on
all the signals we emit though. Sean didn't say what to
do about those. I figure always sending html on signals
sounds good.
I'm not sure I like how I did this exactly, especially
with respect to whether it's the core or ui's job to
make sure the html prpl flag gets honored. But it
should be good enough for now.
Anyway, this fixes the "sending someone <> on
IRC/ICQ/MSN/etc shows up blank on my end!" problem.
All prpls need to pass html to the core now, as Sean
said in his email. I made msn, and gg comply. IRC was
cool enough to already be complying. Jabber is so cool
it actually takes html and isn't effected by this.
ICQ, OSCAR, Trepia, zephyr, and napster still need to
be fixed. (Note that it's not this patch that breaks
them, they're already broken in CVS). I think TOC uses
html and isn't effected.
I'm not bothering with the old ICQ prpl. I'm not sure
what's going on in trepia. I'm even less sure what's
going on in zephyr. I didn't even check if napster used
html or not.
For OSCAR, I'm hoping I can get KingAnt to fix it.
Normally I'd say, ICQ messages all need
gaim_escape_html called on them. But what about
receiving an ICQ messagefrom an AIM account, or vise versa?" -- marv yet
again
(00:48:48) LSchiere: marv: should i apply the patch sean asked for or
should i wait for him to look at it?
(00:49:17) marv: LSchiere: he talked like I should get it applied by
someone not him
(00:49:21) LSchiere: kay
(00:49:29) marv: he said i knew the appropriate people to talk to
(00:50:16) LSchiere: KingAnt: marv is making work for you
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sun, 14 Mar 2004 05:42:56 +0000 |
parents | 20262ccefdd8 |
children | 7a8aa87164ae |
rev | line source |
---|---|
6371 | 1 /** |
2 * gaim | |
3 * | |
8046 | 4 * Gaim is the legal property of its developers, whose names are too numerous |
5 * to list here. Please refer to the COPYRIGHT file distributed with this | |
6 * source distribution. | |
8007
a13118091bc7
[gaim-migrate @ 8685]
Christian Hammond <chipx86@chipx86.com>
parents:
7581
diff
changeset
|
7 * |
6371 | 8 * This program is free software; you can redistribute it and/or modify |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 */ | |
22 #include "internal.h" | |
23 | |
24 #include "account.h" | |
25 #include "privacy.h" | |
26 #include "server.h" | |
27 #include "util.h" | |
28 | |
29 static GaimPrivacyUiOps *privacy_ops = NULL; | |
30 | |
31 gboolean | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
32 gaim_privacy_permit_add(GaimAccount *account, const char *who, |
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
33 gboolean local_only) |
6371 | 34 { |
35 GSList *l; | |
36 char *name; | |
37 | |
38 g_return_val_if_fail(account != NULL, FALSE); | |
39 g_return_val_if_fail(who != NULL, FALSE); | |
40 | |
7261 | 41 name = g_strdup(gaim_normalize(account, who)); |
6371 | 42 |
43 for (l = account->permit; l != NULL; l = l->next) { | |
7261 | 44 if (!gaim_utf8_strcasecmp(name, gaim_normalize(account, (char *)l->data))) |
6371 | 45 break; |
46 } | |
47 | |
48 g_free(name); | |
49 | |
50 if (l != NULL) | |
51 return FALSE; | |
52 | |
53 account->permit = g_slist_append(account->permit, g_strdup(who)); | |
54 | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
55 if (!local_only && gaim_account_is_connected(account)) |
6373
4d61775a5741
[gaim-migrate @ 6878]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
56 serv_add_permit(gaim_account_get_connection(account), who); |
4d61775a5741
[gaim-migrate @ 6878]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
57 |
6371 | 58 gaim_blist_save(); |
59 | |
60 if (privacy_ops != NULL && privacy_ops->permit_added != NULL) | |
61 privacy_ops->permit_added(account, who); | |
62 | |
63 return TRUE; | |
64 } | |
65 | |
66 gboolean | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
67 gaim_privacy_permit_remove(GaimAccount *account, const char *who, |
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
68 gboolean local_only) |
6371 | 69 { |
70 GSList *l; | |
71 char *name; | |
72 | |
73 g_return_val_if_fail(account != NULL, FALSE); | |
74 g_return_val_if_fail(who != NULL, FALSE); | |
75 | |
7261 | 76 name = g_strdup(gaim_normalize(account, who)); |
6371 | 77 |
78 for (l = account->permit; l != NULL; l = l->next) { | |
7261 | 79 if (!gaim_utf8_strcasecmp(name, gaim_normalize(account, (char *)l->data))) |
6371 | 80 break; |
81 } | |
82 | |
83 g_free(name); | |
84 | |
85 if (l == NULL) | |
86 return FALSE; | |
87 | |
88 account->permit = g_slist_remove(account->permit, l->data); | |
89 g_free(l->data); | |
90 | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
91 if (!local_only && gaim_account_is_connected(account)) |
7581 | 92 serv_rem_permit(gaim_account_get_connection(account), who); |
6373
4d61775a5741
[gaim-migrate @ 6878]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
93 |
6371 | 94 gaim_blist_save(); |
95 | |
96 if (privacy_ops != NULL && privacy_ops->permit_removed != NULL) | |
97 privacy_ops->permit_removed(account, who); | |
98 | |
99 return TRUE; | |
100 } | |
101 | |
102 gboolean | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
103 gaim_privacy_deny_add(GaimAccount *account, const char *who, |
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
104 gboolean local_only) |
6371 | 105 { |
106 GSList *l; | |
107 char *name; | |
108 | |
109 g_return_val_if_fail(account != NULL, FALSE); | |
110 g_return_val_if_fail(who != NULL, FALSE); | |
111 | |
7261 | 112 name = g_strdup(gaim_normalize(account, who)); |
6371 | 113 |
114 for (l = account->deny; l != NULL; l = l->next) { | |
7261 | 115 if (!gaim_utf8_strcasecmp(name, gaim_normalize(account, (char *)l->data))) |
6371 | 116 break; |
117 } | |
118 | |
119 g_free(name); | |
120 | |
121 if (l != NULL) | |
122 return FALSE; | |
123 | |
124 account->deny = g_slist_append(account->deny, g_strdup(who)); | |
125 | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
126 if (!local_only && gaim_account_is_connected(account)) |
6373
4d61775a5741
[gaim-migrate @ 6878]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
127 serv_add_deny(gaim_account_get_connection(account), who); |
4d61775a5741
[gaim-migrate @ 6878]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
128 |
6371 | 129 gaim_blist_save(); |
130 | |
131 if (privacy_ops != NULL && privacy_ops->deny_added != NULL) | |
132 privacy_ops->deny_added(account, who); | |
133 | |
134 return TRUE; | |
135 } | |
136 | |
137 gboolean | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
138 gaim_privacy_deny_remove(GaimAccount *account, const char *who, |
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
139 gboolean local_only) |
6371 | 140 { |
141 GSList *l; | |
142 char *name; | |
143 | |
144 g_return_val_if_fail(account != NULL, FALSE); | |
145 g_return_val_if_fail(who != NULL, FALSE); | |
146 | |
7261 | 147 name = g_strdup(gaim_normalize(account, who)); |
6371 | 148 |
149 for (l = account->deny; l != NULL; l = l->next) { | |
7261 | 150 if (!gaim_utf8_strcasecmp(name, gaim_normalize(account, (char *)l->data))) |
6371 | 151 break; |
152 } | |
153 | |
154 g_free(name); | |
155 | |
156 if (l == NULL) | |
157 return FALSE; | |
158 | |
159 account->deny = g_slist_remove(account->deny, l->data); | |
160 g_free(l->data); | |
161 | |
8150 | 162 if (!local_only && gaim_account_is_connected(account)) |
6373
4d61775a5741
[gaim-migrate @ 6878]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
163 serv_rem_deny(gaim_account_get_connection(account), who); |
4d61775a5741
[gaim-migrate @ 6878]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
164 |
6371 | 165 gaim_blist_save(); |
166 | |
167 if (privacy_ops != NULL && privacy_ops->deny_removed != NULL) | |
168 privacy_ops->deny_removed(account, who); | |
169 | |
170 return TRUE; | |
171 } | |
172 | |
173 void | |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
174 gaim_privacy_set_ui_ops(GaimPrivacyUiOps *ops) |
6371 | 175 { |
176 privacy_ops = ops; | |
177 } | |
178 | |
179 GaimPrivacyUiOps * | |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
180 gaim_privacy_get_ui_ops(void) |
6371 | 181 { |
182 return privacy_ops; | |
183 } | |
184 | |
185 void | |
186 gaim_privacy_init(void) | |
187 { | |
188 } |