Mercurial > pidgin
annotate src/privacy.c @ 9166:1e51236d825e
[gaim-migrate @ 9951]
This removes some stuff for im image that isn't used anymore.
Basicly one of the things I did when i brought it back, was to make it so
the host widget doesn't have to do any special handling for its imhtml to
support <img id="###"> tags. And while this goal was achieved in 0.78,
there's still code all over the place that checks flags that aren't used
and iterates over lists that will always be empty. This doesn't remove all
of it, but removes some of it anyway.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Wed, 02 Jun 2004 05:08:49 +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 } |