Mercurial > pidgin
annotate src/blist.c @ 5985:60d9cbfb6bf8
[gaim-migrate @ 6433]
Fixed Cae Bug #9. I hope this doesn't mess with anything else. Is there a
reason this sanity check doesn't return when the vars are invalid?
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Wed, 02 Jul 2003 08:53:03 +0000 |
parents | ac4dd1d0ee39 |
children | 0aeb4fd0fc65 |
rev | line source |
---|---|
5228 | 1 /* |
2 * gaim | |
3 * | |
4 * Copyright (C) 2003, Sean Egan <sean.egan@binghamton.edu> | |
5 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
8 * it under the terms of the GNU General Public License as published by | |
9 * the Free Software Foundation; either version 2 of the License, or | |
10 * (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 * GNU General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program; if not, write to the Free Software | |
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
20 * | |
21 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
22 #include "internal.h" |
5228 | 23 #include "blist.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
24 #include "conversation.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
25 #include "debug.h" |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
26 #include "notify.h" |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
27 #include "prefs.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
28 #include "privacy.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
29 #include "prpl.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
30 #include "server.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
31 #include "util.h" |
5228 | 32 |
33 #define PATHSIZE 1024 | |
34 | |
35 struct gaim_buddy_list *gaimbuddylist = NULL; | |
36 static struct gaim_blist_ui_ops *blist_ui_ops = NULL; | |
37 | |
38 /***************************************************************************** | |
39 * Private Utility functions * | |
40 *****************************************************************************/ | |
41 static GaimBlistNode *gaim_blist_get_last_sibling(GaimBlistNode *node) | |
42 { | |
43 GaimBlistNode *n = node; | |
44 if (!n) | |
45 return NULL; | |
46 while (n->next) | |
47 n = n->next; | |
48 return n; | |
49 } | |
50 static GaimBlistNode *gaim_blist_get_last_child(GaimBlistNode *node) | |
51 { | |
52 if (!node) | |
53 return NULL; | |
54 return gaim_blist_get_last_sibling(node->child); | |
55 } | |
56 | |
5247 | 57 struct _gaim_hbuddy { |
58 char *name; | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
59 GaimAccount *account; |
5758 | 60 GaimBlistNode *group; |
5247 | 61 }; |
62 | |
63 static guint _gaim_blist_hbuddy_hash (struct _gaim_hbuddy *hb) | |
64 { | |
65 return g_str_hash(hb->name); | |
66 } | |
67 | |
68 static guint _gaim_blist_hbuddy_equal (struct _gaim_hbuddy *hb1, struct _gaim_hbuddy *hb2) | |
69 { | |
5758 | 70 return ((!strcmp(hb1->name, hb2->name)) && hb1->account == hb2->account && hb1->group == hb2->group); |
5247 | 71 } |
72 | |
5228 | 73 /***************************************************************************** |
74 * Public API functions * | |
75 *****************************************************************************/ | |
76 | |
77 struct gaim_buddy_list *gaim_blist_new() | |
78 { | |
79 struct gaim_buddy_list *gbl = g_new0(struct gaim_buddy_list, 1); | |
80 | |
81 gbl->ui_ops = gaim_get_blist_ui_ops(); | |
82 | |
5247 | 83 gbl->buddies = g_hash_table_new ((GHashFunc)_gaim_blist_hbuddy_hash, |
84 (GEqualFunc)_gaim_blist_hbuddy_equal); | |
85 | |
5228 | 86 if (gbl->ui_ops != NULL && gbl->ui_ops->new_list != NULL) |
87 gbl->ui_ops->new_list(gbl); | |
88 | |
89 return gbl; | |
90 } | |
91 | |
92 void | |
93 gaim_set_blist(struct gaim_buddy_list *list) | |
94 { | |
95 gaimbuddylist = list; | |
96 } | |
97 | |
98 struct gaim_buddy_list * | |
99 gaim_get_blist(void) | |
100 { | |
101 return gaimbuddylist; | |
102 } | |
103 | |
104 void gaim_blist_show () | |
105 { | |
106 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
107 if (ops) | |
108 ops->show(gaimbuddylist); | |
109 } | |
110 | |
111 void gaim_blist_destroy() | |
112 { | |
113 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
114 if (ops) | |
115 ops->destroy(gaimbuddylist); | |
116 } | |
117 | |
118 void gaim_blist_set_visible (gboolean show) | |
119 { | |
120 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
121 if (ops) | |
122 ops->set_visible(gaimbuddylist, show); | |
123 } | |
124 | |
125 void gaim_blist_update_buddy_status (struct buddy *buddy, int status) | |
126 { | |
5266
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
127 struct gaim_blist_ui_ops *ops; |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
128 |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
129 if (buddy->uc == status) |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
130 return; |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
131 |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
132 ops = gaimbuddylist->ui_ops; |
5228 | 133 |
5305 | 134 if((status & UC_UNAVAILABLE) != (buddy->uc & UC_UNAVAILABLE)) { |
135 if(status & UC_UNAVAILABLE) | |
136 gaim_event_broadcast(event_buddy_away, buddy->account->gc, buddy->name); | |
137 else | |
138 gaim_event_broadcast(event_buddy_back, buddy->account->gc, buddy->name); | |
139 } | |
5228 | 140 |
5305 | 141 buddy->uc = status; |
5228 | 142 if (ops) |
143 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
144 } | |
145 | |
146 static gboolean presence_update_timeout_cb(struct buddy *buddy) { | |
147 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
148 | |
149 if(buddy->present == GAIM_BUDDY_SIGNING_ON) { | |
150 buddy->present = GAIM_BUDDY_ONLINE; | |
151 gaim_event_broadcast(event_buddy_signon, buddy->account->gc, buddy->name); | |
152 } else if(buddy->present == GAIM_BUDDY_SIGNING_OFF) { | |
153 buddy->present = GAIM_BUDDY_OFFLINE; | |
154 } | |
155 | |
156 buddy->timer = 0; | |
157 | |
158 if (ops) | |
159 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
160 | |
161 return FALSE; | |
162 } | |
163 | |
164 void gaim_blist_update_buddy_presence(struct buddy *buddy, int presence) { | |
165 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
166 gboolean do_timer = FALSE; | |
167 | |
168 if (!GAIM_BUDDY_IS_ONLINE(buddy) && presence) { | |
169 buddy->present = GAIM_BUDDY_SIGNING_ON; | |
170 gaim_event_broadcast(event_buddy_signon, buddy->account->gc, buddy->name); | |
171 do_timer = TRUE; | |
5277 | 172 ((struct group *)((GaimBlistNode *)buddy)->parent)->online++; |
5228 | 173 } else if(GAIM_BUDDY_IS_ONLINE(buddy) && !presence) { |
174 buddy->present = GAIM_BUDDY_SIGNING_OFF; | |
175 gaim_event_broadcast(event_buddy_signoff, buddy->account->gc, buddy->name); | |
176 do_timer = TRUE; | |
5394 | 177 ((struct group *)((GaimBlistNode *)buddy)->parent)->online--; |
5228 | 178 } |
179 | |
180 if(do_timer) { | |
181 if(buddy->timer > 0) | |
182 g_source_remove(buddy->timer); | |
183 buddy->timer = g_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
184 } | |
185 | |
186 if (ops) | |
187 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
188 } | |
189 | |
190 | |
191 void gaim_blist_update_buddy_idle (struct buddy *buddy, int idle) | |
192 { | |
193 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
194 buddy->idle = idle; | |
195 if (ops) | |
196 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
197 } | |
198 void gaim_blist_update_buddy_evil (struct buddy *buddy, int warning) | |
199 { | |
200 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
201 buddy->evil = warning; | |
202 if (ops) | |
203 ops->update(gaimbuddylist,(GaimBlistNode*)buddy); | |
204 } | |
205 void gaim_blist_update_buddy_icon(struct buddy *buddy) { | |
206 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
207 if(ops) | |
208 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
209 } | |
210 void gaim_blist_rename_buddy (struct buddy *buddy, const char *name) | |
211 { | |
212 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
5634 | 213 g_free(buddy->name); |
5228 | 214 buddy->name = g_strdup(name); |
215 if (ops) | |
216 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
217 } | |
5234 | 218 |
219 void gaim_blist_alias_chat(struct chat *chat, const char *alias) | |
220 { | |
221 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
222 | |
5237 | 223 g_free(chat->alias); |
5234 | 224 |
5237 | 225 if(alias && strlen(alias)) |
226 chat->alias = g_strdup(alias); | |
227 else | |
228 chat->alias = NULL; | |
229 | |
5234 | 230 if(ops) |
231 ops->update(gaimbuddylist, (GaimBlistNode*)chat); | |
232 } | |
233 | |
5228 | 234 void gaim_blist_alias_buddy (struct buddy *buddy, const char *alias) |
235 { | |
236 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5634
diff
changeset
|
237 GaimConversation *conv; |
5228 | 238 |
239 g_free(buddy->alias); | |
240 | |
241 if(alias && strlen(alias)) | |
242 buddy->alias = g_strdup(alias); | |
243 else | |
244 buddy->alias = NULL; | |
245 | |
246 if (ops) | |
247 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
248 | |
249 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); | |
250 | |
251 if (conv) | |
252 gaim_conversation_autoset_title(conv); | |
253 } | |
254 | |
255 void gaim_blist_rename_group(struct group *group, const char *name) | |
256 { | |
257 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
5346 | 258 struct group *dest_group; |
259 GaimBlistNode *prev, *child, *next; | |
260 GSList *accts; | |
261 | |
262 if(!name || !strlen(name) || !strcmp(name, group->name)) { | |
263 /* nothing to do here */ | |
264 return; | |
265 } else if((dest_group = gaim_find_group(name))) { | |
266 /* here we're merging two groups */ | |
267 prev = gaim_blist_get_last_child((GaimBlistNode*)dest_group); | |
268 child = ((GaimBlistNode*)group)->child; | |
269 | |
270 while(child) | |
271 { | |
272 next = child->next; | |
273 if(GAIM_BLIST_NODE_IS_BUDDY(child)) { | |
274 gaim_blist_add_buddy((struct buddy *)child, dest_group, prev); | |
275 prev = child; | |
276 } else if(GAIM_BLIST_NODE_IS_CHAT(child)) { | |
277 gaim_blist_add_chat((struct chat *)child, dest_group, prev); | |
278 prev = child; | |
279 } else { | |
280 gaim_debug(GAIM_DEBUG_ERROR, "blist", | |
281 "Unknown child type in group %s\n", group->name); | |
282 } | |
283 child = next; | |
284 } | |
285 for (accts = gaim_group_get_accounts(group); accts; accts = g_slist_remove(accts, accts->data)) { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
286 GaimAccount *account = accts->data; |
5346 | 287 serv_rename_group(account->gc, group, name); |
288 } | |
289 gaim_blist_remove_group(group); | |
290 } else { | |
291 /* a simple rename */ | |
292 for (accts = gaim_group_get_accounts(group); accts; accts = g_slist_remove(accts, accts->data)) { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
293 GaimAccount *account = accts->data; |
5346 | 294 serv_rename_group(account->gc, group, name); |
295 } | |
296 g_free(group->name); | |
297 group->name = g_strdup(name); | |
298 if (ops) | |
299 ops->update(gaimbuddylist, (GaimBlistNode*)group); | |
300 } | |
5228 | 301 } |
5234 | 302 |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
303 struct chat *gaim_chat_new(GaimAccount *account, const char *alias, GHashTable *components) |
5234 | 304 { |
305 struct chat *chat; | |
306 struct gaim_blist_ui_ops *ops; | |
307 | |
5237 | 308 if(!components) |
5234 | 309 return NULL; |
310 | |
311 chat = g_new0(struct chat, 1); | |
312 chat->account = account; | |
5237 | 313 if(alias && strlen(alias)) |
314 chat->alias = g_strdup(alias); | |
5234 | 315 chat->components = components; |
5906 | 316 chat->settings = g_hash_table_new_full(g_str_hash, g_str_equal, |
317 g_free, g_free); | |
5234 | 318 |
319 ((GaimBlistNode*)chat)->type = GAIM_BLIST_CHAT_NODE; | |
320 | |
321 ops = gaim_get_blist_ui_ops(); | |
322 | |
323 if (ops != NULL && ops->new_node != NULL) | |
324 ops->new_node((GaimBlistNode *)chat); | |
325 | |
326 return chat; | |
327 } | |
328 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
329 struct buddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias) |
5228 | 330 { |
331 struct buddy *b; | |
332 struct gaim_blist_ui_ops *ops; | |
333 | |
334 b = g_new0(struct buddy, 1); | |
335 b->account = account; | |
336 b->name = g_strdup(screenname); | |
337 b->alias = g_strdup(alias); | |
338 b->settings = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); | |
339 ((GaimBlistNode*)b)->type = GAIM_BLIST_BUDDY_NODE; | |
340 | |
341 ops = gaim_get_blist_ui_ops(); | |
342 | |
343 if (ops != NULL && ops->new_node != NULL) | |
344 ops->new_node((GaimBlistNode *)b); | |
345 | |
346 return b; | |
347 } | |
5634 | 348 |
5234 | 349 void gaim_blist_add_chat(struct chat *chat, struct group *group, GaimBlistNode *node) |
350 { | |
351 GaimBlistNode *n = node, *cnode = (GaimBlistNode*)chat; | |
352 struct group *g = group; | |
353 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
354 gboolean save = FALSE; | |
355 | |
356 if (!n) { | |
357 if (!g) { | |
358 g = gaim_group_new(_("Chats")); | |
5634 | 359 gaim_blist_add_group(g, |
360 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5234 | 361 } |
362 } else { | |
363 g = (struct group*)n->parent; | |
364 } | |
365 | |
366 /* if we're moving to overtop of ourselves, do nothing */ | |
367 if(cnode == n) | |
368 return; | |
369 | |
370 if (cnode->parent) { | |
371 /* This chat was already in the list and is | |
372 * being moved. | |
373 */ | |
5277 | 374 ((struct group *)cnode->parent)->totalsize--; |
5855 | 375 if (gaim_account_is_connected(chat->account)) { |
5287 | 376 ((struct group *)cnode->parent)->online--; |
5277 | 377 ((struct group *)cnode->parent)->currentsize--; |
5287 | 378 } |
5234 | 379 if(cnode->next) |
380 cnode->next->prev = cnode->prev; | |
381 if(cnode->prev) | |
382 cnode->prev->next = cnode->next; | |
383 if(cnode->parent->child == cnode) | |
384 cnode->parent->child = cnode->next; | |
385 | |
386 ops->remove(gaimbuddylist, cnode); | |
387 | |
388 save = TRUE; | |
389 } | |
390 | |
391 if (n) { | |
392 if(n->next) | |
393 n->next->prev = cnode; | |
394 cnode->next = n->next; | |
395 cnode->prev = n; | |
396 cnode->parent = n->parent; | |
397 n->next = cnode; | |
5277 | 398 ((struct group *)n->parent)->totalsize++; |
5855 | 399 if (gaim_account_is_connected(chat->account)) { |
5287 | 400 ((struct group *)n->parent)->online++; |
5277 | 401 ((struct group *)n->parent)->currentsize++; |
5287 | 402 } |
5234 | 403 } else { |
5634 | 404 if(((GaimBlistNode*)g)->child) |
405 ((GaimBlistNode*)g)->child->prev = cnode; | |
406 cnode->next = ((GaimBlistNode*)g)->child; | |
407 cnode->prev = NULL; | |
5234 | 408 ((GaimBlistNode*)g)->child = cnode; |
409 cnode->parent = (GaimBlistNode*)g; | |
5277 | 410 g->totalsize++; |
5855 | 411 if (gaim_account_is_connected(chat->account)) { |
5287 | 412 g->online++; |
5277 | 413 g->currentsize++; |
5287 | 414 } |
5234 | 415 } |
416 | |
417 if (ops) | |
418 ops->update(gaimbuddylist, (GaimBlistNode*)cnode); | |
419 if (save) | |
420 gaim_blist_save(); | |
421 } | |
422 | |
5228 | 423 void gaim_blist_add_buddy (struct buddy *buddy, struct group *group, GaimBlistNode *node) |
424 { | |
425 GaimBlistNode *n = node, *bnode = (GaimBlistNode*)buddy; | |
426 struct group *g = group; | |
427 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
5247 | 428 struct _gaim_hbuddy *hb; |
5228 | 429 gboolean save = FALSE; |
430 | |
431 if (!n) { | |
432 if (!g) { | |
433 g = gaim_group_new(_("Buddies")); | |
5634 | 434 gaim_blist_add_group(g, |
435 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5228 | 436 } |
437 } else { | |
438 g = (struct group*)n->parent; | |
439 } | |
440 | |
441 /* if we're moving to overtop of ourselves, do nothing */ | |
442 if(bnode == n) | |
443 return; | |
444 | |
445 if (bnode->parent) { | |
446 /* This buddy was already in the list and is | |
447 * being moved. | |
448 */ | |
5394 | 449 ((struct group *)bnode->parent)->totalsize--; |
5855 | 450 if (gaim_account_is_connected(buddy->account)) |
5277 | 451 ((struct group *)bnode->parent)->currentsize--; |
5394 | 452 if (GAIM_BUDDY_IS_ONLINE(buddy)) |
5313 | 453 ((struct group *)bnode->parent)->online--; |
5277 | 454 |
5228 | 455 if(bnode->next) |
456 bnode->next->prev = bnode->prev; | |
457 if(bnode->prev) | |
458 bnode->prev->next = bnode->next; | |
459 if(bnode->parent->child == bnode) | |
460 bnode->parent->child = bnode->next; | |
461 | |
462 ops->remove(gaimbuddylist, bnode); | |
463 | |
5277 | 464 if (bnode->parent != ((GaimBlistNode*)g)) { |
5228 | 465 serv_move_buddy(buddy, (struct group*)bnode->parent, g); |
5277 | 466 } |
5228 | 467 save = TRUE; |
468 } | |
469 | |
470 if (n) { | |
471 if(n->next) | |
472 n->next->prev = (GaimBlistNode*)buddy; | |
473 ((GaimBlistNode*)buddy)->next = n->next; | |
474 ((GaimBlistNode*)buddy)->prev = n; | |
475 ((GaimBlistNode*)buddy)->parent = n->parent; | |
476 n->next = (GaimBlistNode*)buddy; | |
5277 | 477 ((struct group *)n->parent)->totalsize++; |
5855 | 478 if (gaim_account_is_connected(buddy->account)) |
5277 | 479 ((struct group *)n->parent)->currentsize++; |
5394 | 480 if (GAIM_BUDDY_IS_ONLINE(buddy)) |
5313 | 481 ((struct group *)n->parent)->online++; |
5228 | 482 } else { |
5634 | 483 if(((GaimBlistNode*)g)->child) |
484 ((GaimBlistNode*)g)->child->prev = (GaimBlistNode*)buddy; | |
485 ((GaimBlistNode*)buddy)->prev = NULL; | |
486 ((GaimBlistNode*)buddy)->next = ((GaimBlistNode*)g)->child; | |
5228 | 487 ((GaimBlistNode*)g)->child = (GaimBlistNode*)buddy; |
488 ((GaimBlistNode*)buddy)->parent = (GaimBlistNode*)g; | |
5277 | 489 g->totalsize++; |
5855 | 490 if (gaim_account_is_connected(buddy->account)) |
5277 | 491 g->currentsize++; |
5394 | 492 if (GAIM_BUDDY_IS_ONLINE(buddy)) |
5313 | 493 g->online++; |
5228 | 494 } |
495 | |
5247 | 496 hb = g_malloc(sizeof(struct _gaim_hbuddy)); |
497 hb->name = g_strdup(normalize(buddy->name)); | |
498 hb->account = buddy->account; | |
5758 | 499 hb->group = ((GaimBlistNode*)buddy)->parent; |
5247 | 500 |
501 if (g_hash_table_lookup(gaimbuddylist->buddies, (gpointer)hb)) { | |
502 /* This guy already exists */ | |
503 g_free(hb->name); | |
504 g_free(hb); | |
505 } else { | |
506 g_hash_table_insert(gaimbuddylist->buddies, (gpointer)hb, (gpointer)buddy); | |
507 } | |
508 | |
5228 | 509 if (ops) |
510 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
511 if (save) | |
512 gaim_blist_save(); | |
513 } | |
514 | |
515 struct group *gaim_group_new(const char *name) | |
516 { | |
517 struct group *g = gaim_find_group(name); | |
518 | |
519 if (!g) { | |
520 struct gaim_blist_ui_ops *ops; | |
521 g= g_new0(struct group, 1); | |
522 g->name = g_strdup(name); | |
5277 | 523 g->totalsize = 0; |
524 g->currentsize = 0; | |
525 g->online = 0; | |
5228 | 526 g->settings = g_hash_table_new_full(g_str_hash, g_str_equal, |
527 g_free, g_free); | |
528 ((GaimBlistNode*)g)->type = GAIM_BLIST_GROUP_NODE; | |
529 | |
530 ops = gaim_get_blist_ui_ops(); | |
531 | |
532 if (ops != NULL && ops->new_node != NULL) | |
533 ops->new_node((GaimBlistNode *)g); | |
534 | |
535 } | |
536 return g; | |
537 } | |
538 | |
539 void gaim_blist_add_group (struct group *group, GaimBlistNode *node) | |
540 { | |
541 struct gaim_blist_ui_ops *ops; | |
542 GaimBlistNode *gnode = (GaimBlistNode*)group; | |
543 gboolean save = FALSE; | |
544 | |
545 if (!gaimbuddylist) | |
546 gaimbuddylist = gaim_blist_new(); | |
547 ops = gaimbuddylist->ui_ops; | |
548 | |
549 if (!gaimbuddylist->root) { | |
550 gaimbuddylist->root = gnode; | |
551 return; | |
552 } | |
553 | |
554 /* if we're moving to overtop of ourselves, do nothing */ | |
555 if(gnode == node) | |
556 return; | |
557 | |
558 if (gaim_find_group(group->name)) { | |
559 /* This is just being moved */ | |
560 | |
561 ops->remove(gaimbuddylist, (GaimBlistNode*)group); | |
562 | |
563 if(gnode == gaimbuddylist->root) | |
564 gaimbuddylist->root = gnode->next; | |
565 if(gnode->prev) | |
566 gnode->prev->next = gnode->next; | |
567 if(gnode->next) | |
568 gnode->next->prev = gnode->prev; | |
569 | |
570 save = TRUE; | |
571 } | |
572 | |
5634 | 573 if (node) { |
574 gnode->next = node->next; | |
575 gnode->prev = node; | |
576 if(node->next) | |
577 node->next->prev = gnode; | |
578 node->next = gnode; | |
579 } else { | |
580 gaimbuddylist->root->prev = gnode; | |
581 gnode->next = gaimbuddylist->root; | |
582 gnode->prev = NULL; | |
583 gaimbuddylist->root = gnode; | |
584 } | |
585 | |
5228 | 586 |
587 if (ops) { | |
588 ops->update(gaimbuddylist, gnode); | |
589 for(node = gnode->child; node; node = node->next) | |
590 ops->update(gaimbuddylist, node); | |
591 } | |
592 if (save) | |
593 gaim_blist_save(); | |
594 } | |
595 | |
596 void gaim_blist_remove_buddy (struct buddy *buddy) | |
597 { | |
598 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
599 | |
600 GaimBlistNode *gnode, *node = (GaimBlistNode*)buddy; | |
601 struct group *group; | |
5247 | 602 struct _gaim_hbuddy hb, *key; |
603 struct buddy *val; | |
5228 | 604 |
605 gnode = node->parent; | |
606 group = (struct group *)gnode; | |
607 | |
608 if(gnode->child == node) | |
609 gnode->child = node->next; | |
610 if (node->prev) | |
611 node->prev->next = node->next; | |
612 if (node->next) | |
613 node->next->prev = node->prev; | |
5394 | 614 group->totalsize--; |
5855 | 615 if (gaim_account_is_connected(buddy->account)) |
5277 | 616 group->currentsize--; |
5394 | 617 if (GAIM_BUDDY_IS_ONLINE(buddy)) |
618 group->online--; | |
5228 | 619 |
5247 | 620 hb.name = normalize(buddy->name); |
621 hb.account = buddy->account; | |
5758 | 622 hb.group = ((GaimBlistNode*)buddy)->parent; |
5247 | 623 if (g_hash_table_lookup_extended(gaimbuddylist->buddies, &hb, (gpointer *)&key, (gpointer *)&val)) { |
624 g_hash_table_remove(gaimbuddylist->buddies, &hb); | |
625 g_free(key->name); | |
626 g_free(key); | |
627 } | |
628 | |
5292 | 629 if(buddy->timer > 0) |
630 g_source_remove(buddy->timer); | |
631 | |
5228 | 632 ops->remove(gaimbuddylist, node); |
633 g_hash_table_destroy(buddy->settings); | |
634 g_free(buddy->name); | |
635 g_free(buddy->alias); | |
636 g_free(buddy); | |
637 } | |
638 | |
5234 | 639 void gaim_blist_remove_chat (struct chat *chat) |
640 { | |
641 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
642 | |
643 GaimBlistNode *gnode, *node = (GaimBlistNode*)chat; | |
644 struct group *group; | |
645 | |
646 gnode = node->parent; | |
647 group = (struct group *)gnode; | |
648 | |
649 if(gnode->child == node) | |
650 gnode->child = node->next; | |
651 if (node->prev) | |
652 node->prev->next = node->next; | |
653 if (node->next) | |
654 node->next->prev = node->prev; | |
5277 | 655 group->totalsize--; |
5855 | 656 if (gaim_account_is_connected(chat->account)) { |
5277 | 657 group->currentsize--; |
5394 | 658 group->online--; |
659 } | |
5234 | 660 |
661 ops->remove(gaimbuddylist, node); | |
662 g_hash_table_destroy(chat->components); | |
663 g_free(chat->alias); | |
664 g_free(chat); | |
665 } | |
666 | |
5228 | 667 void gaim_blist_remove_group (struct group *group) |
668 { | |
669 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
670 GaimBlistNode *node = (GaimBlistNode*)group; | |
671 | |
672 if(node->child) { | |
673 char *buf; | |
674 int count = 0; | |
675 GaimBlistNode *child = node->child; | |
676 | |
677 while(child) { | |
678 count++; | |
679 child = child->next; | |
680 } | |
681 | |
682 buf = g_strdup_printf(_("%d buddies from group %s were not " | |
683 "removed because their accounts were not logged in. These " | |
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
684 "buddies and the group were not removed.\n"), |
5228 | 685 count, group->name); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
686 |
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
687 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); |
5228 | 688 g_free(buf); |
689 return; | |
690 } | |
691 | |
692 if(gaimbuddylist->root == node) | |
693 gaimbuddylist->root = node->next; | |
694 if (node->prev) | |
695 node->prev->next = node->next; | |
696 if (node->next) | |
697 node->next->prev = node->prev; | |
698 | |
699 ops->remove(gaimbuddylist, node); | |
700 g_free(group->name); | |
701 g_free(group); | |
702 } | |
703 | |
704 char *gaim_get_buddy_alias_only(struct buddy *b) { | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
705 if(!b) |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
706 return NULL; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
707 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
708 if(b->alias && b->alias[0]) { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
709 return b->alias; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
710 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
711 else if (b->server_alias != NULL && |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
712 gaim_prefs_get_bool("/core/buddies/use_server_alias")) { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
713 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
714 return b->server_alias; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
715 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
716 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
717 return NULL; |
5228 | 718 } |
719 | |
720 char * gaim_get_buddy_alias (struct buddy *buddy) | |
721 { | |
722 char *ret = gaim_get_buddy_alias_only(buddy); | |
723 if(!ret) | |
724 return buddy ? buddy->name : _("Unknown"); | |
725 return ret; | |
726 | |
727 } | |
728 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
729 struct buddy *gaim_find_buddy(GaimAccount *account, const char *name) |
5228 | 730 { |
5758 | 731 static struct buddy *buddy = NULL; |
5247 | 732 struct _gaim_hbuddy hb; |
5758 | 733 GaimBlistNode *group; |
734 const char *n = NULL; | |
5228 | 735 |
736 if (!gaimbuddylist) | |
737 return NULL; | |
5758 | 738 |
5985
60d9cbfb6bf8
[gaim-migrate @ 6433]
Christian Hammond <chipx86@chipx86.com>
parents:
5947
diff
changeset
|
739 if (!name && !buddy) |
60d9cbfb6bf8
[gaim-migrate @ 6433]
Christian Hammond <chipx86@chipx86.com>
parents:
5947
diff
changeset
|
740 return NULL; |
5228 | 741 |
5758 | 742 if (name) { |
743 group = gaimbuddylist->root; | |
744 n = name; | |
745 } else { | |
746 group = ((GaimBlistNode*)buddy)->parent->next; | |
747 n = buddy->name; | |
748 } | |
5247 | 749 |
5758 | 750 while (group) { |
751 hb.name = normalize(n); | |
752 hb.account = account; | |
753 hb.group = group; | |
5776 | 754 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) |
5758 | 755 return buddy; |
756 group = ((GaimBlistNode*)group)->next; | |
757 } | |
758 return NULL; | |
5228 | 759 } |
760 | |
761 struct group *gaim_find_group(const char *name) | |
762 { | |
763 GaimBlistNode *node; | |
764 if (!gaimbuddylist) | |
765 return NULL; | |
766 node = gaimbuddylist->root; | |
767 while(node) { | |
768 if (!strcmp(((struct group*)node)->name, name)) | |
769 return (struct group*)node; | |
770 node = node->next; | |
771 } | |
772 return NULL; | |
773 } | |
774 struct group *gaim_find_buddys_group(struct buddy *buddy) | |
775 { | |
776 if (!buddy) | |
777 return NULL; | |
778 return (struct group*)(((GaimBlistNode*)buddy)->parent); | |
779 } | |
780 | |
781 GSList *gaim_group_get_accounts(struct group *g) | |
782 { | |
783 GSList *l = NULL; | |
784 GaimBlistNode *child = ((GaimBlistNode *)g)->child; | |
785 | |
786 while (child) { | |
787 if (!g_slist_find(l, ((struct buddy*)child)->account)) | |
788 l = g_slist_append(l, ((struct buddy*)child)->account); | |
789 child = child->next; | |
790 } | |
791 return l; | |
792 } | |
793 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
794 void gaim_blist_add_account(GaimAccount *account) |
5234 | 795 { |
796 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
797 GaimBlistNode *group, *buddy; | |
798 | |
799 if(!gaimbuddylist) | |
800 return; | |
801 | |
802 for(group = gaimbuddylist->root; group; group = group->next) { | |
803 if(!GAIM_BLIST_NODE_IS_GROUP(group)) | |
804 continue; | |
805 for(buddy = group->child; buddy; buddy = buddy->next) { | |
806 if(GAIM_BLIST_NODE_IS_BUDDY(buddy)) { | |
807 if (account == ((struct buddy*)buddy)->account) { | |
5277 | 808 ((struct group *)group)->currentsize++; |
5234 | 809 if(ops) |
810 ops->update(gaimbuddylist, buddy); | |
811 } | |
812 } else if(GAIM_BLIST_NODE_IS_CHAT(buddy)) { | |
813 if (account == ((struct chat*)buddy)->account) { | |
5287 | 814 ((struct group *)group)->online++; |
5277 | 815 ((struct group *)group)->currentsize++; |
5234 | 816 if(ops) |
817 ops->update(gaimbuddylist, buddy); | |
818 } | |
819 } | |
820 } | |
821 } | |
822 } | |
823 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
824 void gaim_blist_remove_account(GaimAccount *account) |
5228 | 825 { |
826 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
5234 | 827 GaimBlistNode *group, *buddy; |
828 | |
5228 | 829 if (!gaimbuddylist) |
830 return; | |
5234 | 831 |
832 for(group = gaimbuddylist->root; group; group = group->next) { | |
833 if(!GAIM_BLIST_NODE_IS_GROUP(group)) | |
834 continue; | |
835 for(buddy = group->child; buddy; buddy = buddy->next) { | |
836 if(GAIM_BLIST_NODE_IS_BUDDY(buddy)) { | |
837 if (account == ((struct buddy*)buddy)->account) { | |
5394 | 838 if (GAIM_BUDDY_IS_ONLINE((struct buddy*)buddy)) |
5277 | 839 ((struct group *)group)->online--; |
5234 | 840 ((struct buddy*)buddy)->present = GAIM_BUDDY_OFFLINE; |
5394 | 841 ((struct group *)group)->currentsize--; |
5234 | 842 if(ops) |
843 ops->remove(gaimbuddylist, buddy); | |
844 } | |
845 } else if(GAIM_BLIST_NODE_IS_CHAT(buddy)) { | |
846 if (account == ((struct chat*)buddy)->account) { | |
5277 | 847 ((struct group *)group)->online--; |
848 ((struct group *)group)->currentsize--; | |
5234 | 849 if(ops) |
850 ops->remove(gaimbuddylist, buddy); | |
851 } | |
5228 | 852 } |
853 } | |
854 } | |
855 } | |
856 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
857 void parse_toc_buddy_list(GaimAccount *account, char *config) |
5228 | 858 { |
859 char *c; | |
860 char current[256]; | |
861 GList *bud = NULL; | |
862 | |
863 | |
864 if (config != NULL) { | |
865 | |
866 /* skip "CONFIG:" (if it exists) */ | |
867 c = strncmp(config + 6 /* sizeof(struct sflap_hdr) */ , "CONFIG:", strlen("CONFIG:")) ? | |
868 strtok(config, "\n") : | |
869 strtok(config + 6 /* sizeof(struct sflap_hdr) */ + strlen("CONFIG:"), "\n"); | |
870 do { | |
871 if (c == NULL) | |
872 break; | |
873 if (*c == 'g') { | |
874 char *utf8 = NULL; | |
875 utf8 = gaim_try_conv_to_utf8(c + 2); | |
876 if (utf8 == NULL) { | |
877 g_strlcpy(current, _("Invalid Groupname"), sizeof(current)); | |
878 } else { | |
879 g_strlcpy(current, utf8, sizeof(current)); | |
880 g_free(utf8); | |
881 } | |
882 if (!gaim_find_group(current)) { | |
883 struct group *g = gaim_group_new(current); | |
5634 | 884 gaim_blist_add_group(g, |
885 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5228 | 886 } |
887 } else if (*c == 'b') { /*&& !gaim_find_buddy(user, c + 2)) {*/ | |
888 char nm[80], sw[388], *a, *utf8 = NULL; | |
889 | |
890 if ((a = strchr(c + 2, ':')) != NULL) { | |
891 *a++ = '\0'; /* nul the : */ | |
892 } | |
893 | |
894 g_strlcpy(nm, c + 2, sizeof(nm)); | |
895 if (a) { | |
896 utf8 = gaim_try_conv_to_utf8(a); | |
897 if (utf8 == NULL) { | |
898 gaim_debug(GAIM_DEBUG_ERROR, "toc blist", | |
899 "Failed to convert alias for " | |
900 "'%s' to UTF-8\n", nm); | |
901 } | |
902 } | |
903 if (utf8 == NULL) { | |
904 sw[0] = '\0'; | |
905 } else { | |
906 /* This can leave a partial sequence at the end, | |
907 * but who cares? */ | |
908 g_strlcpy(sw, utf8, sizeof(sw)); | |
909 g_free(utf8); | |
910 } | |
911 | |
912 if (!gaim_find_buddy(account, nm)) { | |
913 struct buddy *b = gaim_buddy_new(account, nm, sw); | |
914 struct group *g = gaim_find_group(current); | |
5634 | 915 gaim_blist_add_buddy(b, g, |
916 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
5228 | 917 bud = g_list_append(bud, g_strdup(nm)); |
918 } | |
919 } else if (*c == 'p') { | |
920 gaim_privacy_permit_add(account, c + 2); | |
921 } else if (*c == 'd') { | |
922 gaim_privacy_deny_add(account, c + 2); | |
923 } else if (!strncmp("toc", c, 3)) { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
924 sscanf(c + strlen(c) - 1, "%d", &account->perm_deny); |
5228 | 925 gaim_debug(GAIM_DEBUG_MISC, "toc blist", |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
926 "permdeny: %d\n", account->perm_deny); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
927 if (account->perm_deny == 0) |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
928 account->perm_deny = 1; |
5228 | 929 } else if (*c == 'm') { |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
930 sscanf(c + 2, "%d", &account->perm_deny); |
5228 | 931 gaim_debug(GAIM_DEBUG_MISC, "toc blist", |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
932 "permdeny: %d\n", account->perm_deny); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
933 if (account->perm_deny == 0) |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
934 account->perm_deny = 1; |
5228 | 935 } |
936 } while ((c = strtok(NULL, "\n"))); | |
937 | |
938 if(account->gc) { | |
939 if(bud) { | |
940 GList *node = bud; | |
941 serv_add_buddies(account->gc, bud); | |
942 while(node) { | |
943 g_free(node->data); | |
944 node = node->next; | |
945 } | |
946 } | |
947 serv_set_permit_deny(account->gc); | |
948 } | |
949 g_list_free(bud); | |
950 } | |
951 } | |
952 | |
953 #if 0 | |
954 /* translate an AIM 3 buddylist (*.lst) to a Gaim buddylist */ | |
955 static GString *translate_lst(FILE *src_fp) | |
956 { | |
957 char line[BUF_LEN], *line2; | |
958 char *name; | |
959 int i; | |
960 | |
961 GString *dest = g_string_new("m 1\n"); | |
962 | |
963 while (fgets(line, BUF_LEN, src_fp)) { | |
964 line2 = g_strchug(line); | |
965 if (strstr(line2, "group") == line2) { | |
966 name = strpbrk(line2, " \t\n\r\f") + 1; | |
967 dest = g_string_append(dest, "g "); | |
968 for (i = 0; i < strcspn(name, "\n\r"); i++) | |
969 if (name[i] != '\"') | |
970 dest = g_string_append_c(dest, name[i]); | |
971 dest = g_string_append_c(dest, '\n'); | |
972 } | |
973 if (strstr(line2, "buddy") == line2) { | |
974 name = strpbrk(line2, " \t\n\r\f") + 1; | |
975 dest = g_string_append(dest, "b "); | |
976 for (i = 0; i < strcspn(name, "\n\r"); i++) | |
977 if (name[i] != '\"') | |
978 dest = g_string_append_c(dest, name[i]); | |
979 dest = g_string_append_c(dest, '\n'); | |
980 } | |
981 } | |
982 | |
983 return dest; | |
984 } | |
985 | |
986 | |
987 /* translate an AIM 4 buddylist (*.blt) to Gaim format */ | |
988 static GString *translate_blt(FILE *src_fp) | |
989 { | |
990 int i; | |
991 char line[BUF_LEN]; | |
992 char *buddy; | |
993 | |
994 GString *dest = g_string_new("m 1\n"); | |
995 | |
996 while (strstr(fgets(line, BUF_LEN, src_fp), "Buddy") == NULL); | |
997 while (strstr(fgets(line, BUF_LEN, src_fp), "list") == NULL); | |
998 | |
999 while (1) { | |
1000 fgets(line, BUF_LEN, src_fp); g_strchomp(line); | |
1001 if (strchr(line, '}') != NULL) | |
1002 break; | |
1003 | |
1004 if (strchr(line, '{') != NULL) { | |
1005 /* Syntax starting with "<group> {" */ | |
1006 | |
1007 dest = g_string_append(dest, "g "); | |
1008 buddy = g_strchug(strtok(line, "{")); | |
1009 for (i = 0; i < strlen(buddy); i++) | |
1010 if (buddy[i] != '\"') | |
1011 dest = g_string_append_c(dest, buddy[i]); | |
1012 dest = g_string_append_c(dest, '\n'); | |
1013 while (strchr(fgets(line, BUF_LEN, src_fp), '}') == NULL) { | |
1014 gboolean pounce = FALSE; | |
1015 char *e; | |
1016 g_strchomp(line); | |
1017 buddy = g_strchug(line); | |
1018 gaim_debug(GAIM_DEBUG_MISC, "AIM 4 blt import", | |
1019 "buddy: \"%s\"\n", buddy); | |
1020 dest = g_string_append(dest, "b "); | |
1021 if (strchr(buddy, '{') != NULL) { | |
1022 /* buddy pounce, etc */ | |
1023 char *pos = strchr(buddy, '{') - 1; | |
1024 *pos = 0; | |
1025 pounce = TRUE; | |
1026 } | |
1027 if ((e = strchr(buddy, '\"')) != NULL) { | |
1028 *e = '\0'; | |
1029 buddy++; | |
1030 } | |
1031 dest = g_string_append(dest, buddy); | |
1032 dest = g_string_append_c(dest, '\n'); | |
1033 if (pounce) | |
1034 do | |
1035 fgets(line, BUF_LEN, src_fp); | |
1036 while (!strchr(line, '}')); | |
1037 } | |
1038 } else { | |
1039 | |
1040 /* Syntax "group buddy buddy ..." */ | |
1041 buddy = g_strchug(strtok(line, " \n")); | |
1042 dest = g_string_append(dest, "g "); | |
1043 if (strchr(buddy, '\"') != NULL) { | |
1044 dest = g_string_append(dest, &buddy[1]); | |
1045 dest = g_string_append_c(dest, ' '); | |
1046 buddy = g_strchug(strtok(NULL, " \n")); | |
1047 while (strchr(buddy, '\"') == NULL) { | |
1048 dest = g_string_append(dest, buddy); | |
1049 dest = g_string_append_c(dest, ' '); | |
1050 buddy = g_strchug(strtok(NULL, " \n")); | |
1051 } | |
1052 buddy[strlen(buddy) - 1] = '\0'; | |
1053 dest = g_string_append(dest, buddy); | |
1054 } else { | |
1055 dest = g_string_append(dest, buddy); | |
1056 } | |
1057 dest = g_string_append_c(dest, '\n'); | |
1058 while ((buddy = g_strchug(strtok(NULL, " \n"))) != NULL) { | |
1059 dest = g_string_append(dest, "b "); | |
1060 if (strchr(buddy, '\"') != NULL) { | |
1061 dest = g_string_append(dest, &buddy[1]); | |
1062 dest = g_string_append_c(dest, ' '); | |
1063 buddy = g_strchug(strtok(NULL, " \n")); | |
1064 while (strchr(buddy, '\"') == NULL) { | |
1065 dest = g_string_append(dest, buddy); | |
1066 dest = g_string_append_c(dest, ' '); | |
1067 buddy = g_strchug(strtok(NULL, " \n")); | |
1068 } | |
1069 buddy[strlen(buddy) - 1] = '\0'; | |
1070 dest = g_string_append(dest, buddy); | |
1071 } else { | |
1072 dest = g_string_append(dest, buddy); | |
1073 } | |
1074 dest = g_string_append_c(dest, '\n'); | |
1075 } | |
1076 } | |
1077 } | |
1078 | |
1079 return dest; | |
1080 } | |
1081 | |
1082 static GString *translate_gnomeicu(FILE *src_fp) | |
1083 { | |
1084 char line[BUF_LEN]; | |
1085 GString *dest = g_string_new("m 1\ng Buddies\n"); | |
1086 | |
1087 while (strstr(fgets(line, BUF_LEN, src_fp), "NewContacts") == NULL); | |
1088 | |
1089 while (fgets(line, BUF_LEN, src_fp)) { | |
1090 char *eq; | |
1091 g_strchomp(line); | |
1092 if (line[0] == '\n' || line[0] == '[') | |
1093 break; | |
1094 eq = strchr(line, '='); | |
1095 if (!eq) | |
1096 break; | |
1097 *eq = ':'; | |
1098 eq = strchr(eq, ','); | |
1099 if (eq) | |
1100 *eq = '\0'; | |
1101 dest = g_string_append(dest, "b "); | |
1102 dest = g_string_append(dest, line); | |
1103 dest = g_string_append_c(dest, '\n'); | |
1104 } | |
1105 | |
1106 return dest; | |
1107 } | |
1108 #endif | |
1109 | |
1110 static gchar *get_screenname_filename(const char *name) | |
1111 { | |
1112 gchar **split; | |
1113 gchar *good; | |
1114 gchar *ret; | |
1115 | |
1116 split = g_strsplit(name, G_DIR_SEPARATOR_S, -1); | |
1117 good = g_strjoinv(NULL, split); | |
1118 g_strfreev(split); | |
1119 | |
1120 ret = g_utf8_strup(good, -1); | |
1121 | |
1122 g_free(good); | |
1123 | |
1124 return ret; | |
1125 } | |
1126 | |
1127 static gboolean gaim_blist_read(const char *filename); | |
1128 | |
1129 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1130 static void do_import(GaimAccount *account, const char *filename) |
5228 | 1131 { |
1132 GString *buf = NULL; | |
1133 char first[64]; | |
1134 char path[PATHSIZE]; | |
1135 int len; | |
1136 FILE *f; | |
1137 struct stat st; | |
1138 | |
1139 if (filename) { | |
1140 g_snprintf(path, sizeof(path), "%s", filename); | |
1141 } else { | |
1142 char *g_screenname = get_screenname_filename(account->username); | |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1143 const char *username; |
5228 | 1144 char *file = gaim_user_dir(); |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1145 GaimProtocol prpl_num; |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1146 int protocol; |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1147 |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1148 prpl_num = gaim_account_get_protocol(account); |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1149 |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1150 protocol = prpl_num; |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1151 |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1152 if (prpl_num == GAIM_PROTO_OSCAR) { |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1153 if ((username = gaim_account_get_username(account)) != NULL) { |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1154 protocol = (isalpha(*username) |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1155 ? GAIM_PROTO_TOC : GAIM_PROTO_ICQ); |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1156 } |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1157 } |
5228 | 1158 |
1159 if (file != (char *)NULL) { | |
5435 | 1160 snprintf(path, PATHSIZE, "%s" G_DIR_SEPARATOR_S "%s.%d.blist", file, g_screenname, protocol); |
5228 | 1161 g_free(g_screenname); |
1162 } else { | |
1163 g_free(g_screenname); | |
1164 return; | |
1165 } | |
1166 } | |
1167 | |
1168 if (stat(path, &st)) { | |
1169 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Unable to stat %s.\n", | |
1170 path); | |
1171 return; | |
1172 } | |
1173 | |
1174 if (!(f = fopen(path, "r"))) { | |
1175 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Unable to open %s.\n", | |
1176 path); | |
1177 return; | |
1178 } | |
1179 | |
1180 fgets(first, 64, f); | |
1181 | |
1182 if ((first[0] == '\n') || (first[0] == '\r' && first[1] == '\n')) | |
1183 fgets(first, 64, f); | |
1184 | |
1185 #if 0 | |
1186 if (!g_strncasecmp(first, "<xml", strlen("<xml"))) { | |
1187 /* new gaim XML buddy list */ | |
1188 gaim_blist_read(path); | |
1189 | |
1190 /* We really don't need to bother doing stuf like translating AIM 3 buddy lists anymore */ | |
1191 | |
1192 } else if (!g_strncasecmp(first, "Config {", strlen("Config {"))) { | |
1193 /* AIM 4 buddy list */ | |
1194 gaim_debug(GAIM_DEBUG_MISC, "blist import", "aim 4\n"); | |
1195 rewind(f); | |
1196 buf = translate_blt(f); | |
1197 } else if (strstr(first, "group") != NULL) { | |
1198 /* AIM 3 buddy list */ | |
1199 gaim_debug(GAIM_DEBUG_MISC, "blist import", "aim 3\n"); | |
1200 rewind(f); | |
1201 buf = translate_lst(f); | |
1202 } else if (!g_strncasecmp(first, "[User]", strlen("[User]"))) { | |
1203 /* GnomeICU (hopefully) */ | |
1204 gaim_debug(GAIM_DEBUG_MISC, "blist import", "gnomeicu\n"); | |
1205 rewind(f); | |
1206 buf = translate_gnomeicu(f); | |
1207 | |
1208 } else | |
1209 #endif | |
1210 if (first[0] == 'm') { | |
1211 /* Gaim buddy list - no translation */ | |
1212 char buf2[BUF_LONG * 2]; | |
1213 buf = g_string_new(""); | |
1214 rewind(f); | |
1215 while (1) { | |
1216 len = fread(buf2, 1, BUF_LONG * 2 - 1, f); | |
1217 if (len <= 0) | |
1218 break; | |
1219 buf2[len] = '\0'; | |
1220 buf = g_string_append(buf, buf2); | |
1221 if (len != BUF_LONG * 2 - 1) | |
1222 break; | |
1223 } | |
1224 } | |
1225 | |
1226 fclose(f); | |
1227 | |
1228 if (buf) { | |
1229 buf = g_string_prepend(buf, "toc_set_config {"); | |
1230 buf = g_string_append(buf, "}\n"); | |
1231 parse_toc_buddy_list(account, buf->str); | |
1232 g_string_free(buf, TRUE); | |
1233 } | |
1234 } | |
1235 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1236 gboolean gaim_group_on_account(struct group *g, GaimAccount *account) { |
5228 | 1237 GaimBlistNode *bnode; |
1238 for(bnode = g->node.child; bnode; bnode = bnode->next) { | |
1239 struct buddy *b = (struct buddy *)bnode; | |
1240 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
1241 continue; | |
5855 | 1242 if((!account && gaim_account_is_connected(b->account)) |
1243 || b->account == account) | |
5228 | 1244 return TRUE; |
1245 } | |
1246 return FALSE; | |
1247 } | |
1248 | |
1249 static gboolean blist_safe_to_write = FALSE; | |
1250 | |
1251 static char *blist_parser_group_name = NULL; | |
1252 static char *blist_parser_person_name = NULL; | |
1253 static char *blist_parser_account_name = NULL; | |
1254 static int blist_parser_account_protocol = 0; | |
5234 | 1255 static char *blist_parser_chat_alias = NULL; |
1256 static char *blist_parser_component_name = NULL; | |
1257 static char *blist_parser_component_value = NULL; | |
5228 | 1258 static char *blist_parser_buddy_name = NULL; |
1259 static char *blist_parser_buddy_alias = NULL; | |
1260 static char *blist_parser_setting_name = NULL; | |
1261 static char *blist_parser_setting_value = NULL; | |
1262 static GHashTable *blist_parser_buddy_settings = NULL; | |
5906 | 1263 static GHashTable *blist_parser_chat_settings = NULL; |
5228 | 1264 static GHashTable *blist_parser_group_settings = NULL; |
5234 | 1265 static GHashTable *blist_parser_chat_components = NULL; |
5228 | 1266 static int blist_parser_privacy_mode = 0; |
1267 static GList *tag_stack = NULL; | |
1268 enum { | |
1269 BLIST_TAG_GAIM, | |
1270 BLIST_TAG_BLIST, | |
1271 BLIST_TAG_GROUP, | |
5234 | 1272 BLIST_TAG_CHAT, |
1273 BLIST_TAG_COMPONENT, | |
5228 | 1274 BLIST_TAG_PERSON, |
1275 BLIST_TAG_BUDDY, | |
1276 BLIST_TAG_NAME, | |
1277 BLIST_TAG_ALIAS, | |
1278 BLIST_TAG_SETTING, | |
1279 BLIST_TAG_PRIVACY, | |
1280 BLIST_TAG_ACCOUNT, | |
1281 BLIST_TAG_PERMIT, | |
1282 BLIST_TAG_BLOCK, | |
1283 BLIST_TAG_IGNORE | |
1284 }; | |
1285 static gboolean blist_parser_error_occurred = FALSE; | |
1286 | |
1287 static void blist_start_element_handler (GMarkupParseContext *context, | |
1288 const gchar *element_name, | |
1289 const gchar **attribute_names, | |
1290 const gchar **attribute_values, | |
1291 gpointer user_data, | |
1292 GError **error) { | |
1293 int i; | |
1294 | |
1295 if(!strcmp(element_name, "gaim")) { | |
1296 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_GAIM)); | |
1297 } else if(!strcmp(element_name, "blist")) { | |
1298 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BLIST)); | |
1299 } else if(!strcmp(element_name, "group")) { | |
1300 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_GROUP)); | |
1301 for(i=0; attribute_names[i]; i++) { | |
1302 if(!strcmp(attribute_names[i], "name")) { | |
1303 g_free(blist_parser_group_name); | |
1304 blist_parser_group_name = g_strdup(attribute_values[i]); | |
1305 } | |
1306 } | |
1307 if(blist_parser_group_name) { | |
1308 struct group *g = gaim_group_new(blist_parser_group_name); | |
5634 | 1309 gaim_blist_add_group(g, |
1310 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5228 | 1311 } |
5234 | 1312 } else if(!strcmp(element_name, "chat")) { |
1313 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_CHAT)); | |
1314 for(i=0; attribute_names[i]; i++) { | |
1315 if(!strcmp(attribute_names[i], "account")) { | |
1316 g_free(blist_parser_account_name); | |
1317 blist_parser_account_name = g_strdup(attribute_values[i]); | |
1318 } else if(!strcmp(attribute_names[i], "protocol")) { | |
1319 blist_parser_account_protocol = atoi(attribute_values[i]); | |
1320 } | |
1321 } | |
5228 | 1322 } else if(!strcmp(element_name, "person")) { |
1323 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PERSON)); | |
1324 for(i=0; attribute_names[i]; i++) { | |
1325 if(!strcmp(attribute_names[i], "name")) { | |
1326 g_free(blist_parser_person_name); | |
1327 blist_parser_person_name = g_strdup(attribute_values[i]); | |
1328 } | |
1329 } | |
1330 } else if(!strcmp(element_name, "buddy")) { | |
1331 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BUDDY)); | |
1332 for(i=0; attribute_names[i]; i++) { | |
1333 if(!strcmp(attribute_names[i], "account")) { | |
1334 g_free(blist_parser_account_name); | |
1335 blist_parser_account_name = g_strdup(attribute_values[i]); | |
1336 } else if(!strcmp(attribute_names[i], "protocol")) { | |
1337 blist_parser_account_protocol = atoi(attribute_values[i]); | |
1338 } | |
1339 } | |
1340 } else if(!strcmp(element_name, "name")) { | |
1341 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_NAME)); | |
1342 } else if(!strcmp(element_name, "alias")) { | |
1343 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_ALIAS)); | |
1344 } else if(!strcmp(element_name, "setting")) { | |
1345 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_SETTING)); | |
1346 for(i=0; attribute_names[i]; i++) { | |
1347 if(!strcmp(attribute_names[i], "name")) { | |
1348 g_free(blist_parser_setting_name); | |
1349 blist_parser_setting_name = g_strdup(attribute_values[i]); | |
1350 } | |
1351 } | |
5234 | 1352 } else if(!strcmp(element_name, "component")) { |
1353 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_COMPONENT)); | |
1354 for(i=0; attribute_names[i]; i++) { | |
1355 if(!strcmp(attribute_names[i], "name")) { | |
1356 g_free(blist_parser_component_name); | |
1357 blist_parser_component_name = g_strdup(attribute_values[i]); | |
1358 } | |
1359 } | |
1360 | |
5228 | 1361 } else if(!strcmp(element_name, "privacy")) { |
1362 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PRIVACY)); | |
1363 } else if(!strcmp(element_name, "account")) { | |
1364 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_ACCOUNT)); | |
1365 for(i=0; attribute_names[i]; i++) { | |
1366 if(!strcmp(attribute_names[i], "protocol")) | |
1367 blist_parser_account_protocol = atoi(attribute_values[i]); | |
1368 else if(!strcmp(attribute_names[i], "mode")) | |
1369 blist_parser_privacy_mode = atoi(attribute_values[i]); | |
1370 else if(!strcmp(attribute_names[i], "name")) { | |
1371 g_free(blist_parser_account_name); | |
1372 blist_parser_account_name = g_strdup(attribute_values[i]); | |
1373 } | |
1374 } | |
1375 } else if(!strcmp(element_name, "permit")) { | |
1376 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PERMIT)); | |
1377 } else if(!strcmp(element_name, "block")) { | |
1378 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BLOCK)); | |
1379 } else if(!strcmp(element_name, "ignore")) { | |
1380 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_IGNORE)); | |
1381 } | |
1382 } | |
1383 | |
1384 static void blist_end_element_handler(GMarkupParseContext *context, | |
1385 const gchar *element_name, gpointer user_data, GError **error) { | |
1386 if(!strcmp(element_name, "gaim")) { | |
1387 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1388 } else if(!strcmp(element_name, "blist")) { | |
1389 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1390 } else if(!strcmp(element_name, "group")) { | |
1391 if(blist_parser_group_settings) { | |
1392 struct group *g = gaim_find_group(blist_parser_group_name); | |
1393 g_hash_table_destroy(g->settings); | |
1394 g->settings = blist_parser_group_settings; | |
1395 } | |
1396 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1397 blist_parser_group_settings = NULL; | |
5234 | 1398 } else if(!strcmp(element_name, "chat")) { |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1399 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5234 | 1400 blist_parser_account_protocol); |
5237 | 1401 if(account) { |
5234 | 1402 struct chat *chat = gaim_chat_new(account, blist_parser_chat_alias, blist_parser_chat_components); |
1403 struct group *g = gaim_find_group(blist_parser_group_name); | |
5634 | 1404 gaim_blist_add_chat(chat,g, |
1405 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
5906 | 1406 if(blist_parser_chat_settings) { |
1407 g_hash_table_destroy(chat->settings); | |
1408 chat->settings = blist_parser_chat_settings; | |
1409 } | |
5234 | 1410 } |
1411 g_free(blist_parser_chat_alias); | |
1412 blist_parser_chat_alias = NULL; | |
1413 g_free(blist_parser_account_name); | |
1414 blist_parser_account_name = NULL; | |
1415 blist_parser_chat_components = NULL; | |
5906 | 1416 blist_parser_chat_settings = NULL; |
5234 | 1417 tag_stack = g_list_delete_link(tag_stack, tag_stack); |
5228 | 1418 } else if(!strcmp(element_name, "person")) { |
1419 g_free(blist_parser_person_name); | |
1420 blist_parser_person_name = NULL; | |
1421 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1422 } else if(!strcmp(element_name, "buddy")) { | |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1423 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5228 | 1424 blist_parser_account_protocol); |
1425 if(account) { | |
1426 struct buddy *b = gaim_buddy_new(account, blist_parser_buddy_name, blist_parser_buddy_alias); | |
1427 struct group *g = gaim_find_group(blist_parser_group_name); | |
5634 | 1428 gaim_blist_add_buddy(b,g, |
1429 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
5228 | 1430 if(blist_parser_buddy_settings) { |
1431 g_hash_table_destroy(b->settings); | |
1432 b->settings = blist_parser_buddy_settings; | |
1433 } | |
1434 } | |
1435 g_free(blist_parser_buddy_name); | |
1436 blist_parser_buddy_name = NULL; | |
1437 g_free(blist_parser_buddy_alias); | |
1438 blist_parser_buddy_alias = NULL; | |
1439 g_free(blist_parser_account_name); | |
1440 blist_parser_account_name = NULL; | |
1441 blist_parser_buddy_settings = NULL; | |
1442 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1443 } else if(!strcmp(element_name, "name")) { | |
1444 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1445 } else if(!strcmp(element_name, "alias")) { | |
1446 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
5234 | 1447 } else if(!strcmp(element_name, "component")) { |
1448 if(!blist_parser_chat_components) | |
1449 blist_parser_chat_components = g_hash_table_new_full(g_str_hash, | |
1450 g_str_equal, g_free, g_free); | |
1451 if(blist_parser_component_name && blist_parser_component_value) { | |
1452 g_hash_table_replace(blist_parser_chat_components, | |
1453 g_strdup(blist_parser_component_name), | |
1454 g_strdup(blist_parser_component_value)); | |
1455 } | |
1456 g_free(blist_parser_component_name); | |
1457 g_free(blist_parser_component_value); | |
1458 blist_parser_component_name = NULL; | |
1459 blist_parser_component_value = NULL; | |
1460 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
5228 | 1461 } else if(!strcmp(element_name, "setting")) { |
1462 if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_BUDDY) { | |
1463 if(!blist_parser_buddy_settings) | |
1464 blist_parser_buddy_settings = g_hash_table_new_full(g_str_hash, | |
1465 g_str_equal, g_free, g_free); | |
1466 if(blist_parser_setting_name && blist_parser_setting_value) { | |
1467 g_hash_table_replace(blist_parser_buddy_settings, | |
1468 g_strdup(blist_parser_setting_name), | |
1469 g_strdup(blist_parser_setting_value)); | |
1470 } | |
5906 | 1471 } else if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_CHAT) { |
1472 if(!blist_parser_chat_settings) | |
1473 blist_parser_chat_settings = g_hash_table_new_full(g_str_hash, | |
1474 g_str_equal, g_free, g_free); | |
1475 if(blist_parser_setting_name && blist_parser_setting_value) { | |
1476 g_hash_table_replace(blist_parser_buddy_settings, | |
1477 g_strdup(blist_parser_setting_name), | |
1478 g_strdup(blist_parser_setting_value)); | |
1479 } | |
5228 | 1480 } else if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_GROUP) { |
1481 if(!blist_parser_group_settings) | |
1482 blist_parser_group_settings = g_hash_table_new_full(g_str_hash, | |
1483 g_str_equal, g_free, g_free); | |
1484 if(blist_parser_setting_name && blist_parser_setting_value) { | |
1485 g_hash_table_replace(blist_parser_group_settings, | |
1486 g_strdup(blist_parser_setting_name), | |
1487 g_strdup(blist_parser_setting_value)); | |
1488 } | |
1489 } | |
1490 g_free(blist_parser_setting_name); | |
1491 g_free(blist_parser_setting_value); | |
1492 blist_parser_setting_name = NULL; | |
1493 blist_parser_setting_value = NULL; | |
1494 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1495 } else if(!strcmp(element_name, "privacy")) { | |
1496 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1497 } else if(!strcmp(element_name, "account")) { | |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1498 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5228 | 1499 blist_parser_account_protocol); |
1500 if(account) { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1501 account->perm_deny = blist_parser_privacy_mode; |
5228 | 1502 } |
1503 g_free(blist_parser_account_name); | |
1504 blist_parser_account_name = NULL; | |
1505 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1506 } else if(!strcmp(element_name, "permit")) { | |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1507 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5228 | 1508 blist_parser_account_protocol); |
1509 if(account) { | |
1510 gaim_privacy_permit_add(account, blist_parser_buddy_name); | |
1511 } | |
1512 g_free(blist_parser_buddy_name); | |
1513 blist_parser_buddy_name = NULL; | |
1514 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1515 } else if(!strcmp(element_name, "block")) { | |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1516 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5228 | 1517 blist_parser_account_protocol); |
1518 if(account) { | |
1519 gaim_privacy_deny_add(account, blist_parser_buddy_name); | |
1520 } | |
1521 g_free(blist_parser_buddy_name); | |
1522 blist_parser_buddy_name = NULL; | |
1523 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1524 } else if(!strcmp(element_name, "ignore")) { | |
1525 /* we'll apparently do something with this later */ | |
1526 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1527 } | |
1528 } | |
1529 | |
1530 static void blist_text_handler(GMarkupParseContext *context, const gchar *text, | |
1531 gsize text_len, gpointer user_data, GError **error) { | |
1532 switch(GPOINTER_TO_INT(tag_stack->data)) { | |
1533 case BLIST_TAG_NAME: | |
1534 blist_parser_buddy_name = g_strndup(text, text_len); | |
1535 break; | |
1536 case BLIST_TAG_ALIAS: | |
5234 | 1537 if(tag_stack->next && |
1538 GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_BUDDY) | |
1539 blist_parser_buddy_alias = g_strndup(text, text_len); | |
1540 else if(tag_stack->next && | |
1541 GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_CHAT) | |
1542 blist_parser_chat_alias = g_strndup(text, text_len); | |
5228 | 1543 break; |
1544 case BLIST_TAG_PERMIT: | |
1545 case BLIST_TAG_BLOCK: | |
1546 case BLIST_TAG_IGNORE: | |
1547 blist_parser_buddy_name = g_strndup(text, text_len); | |
1548 break; | |
5234 | 1549 case BLIST_TAG_COMPONENT: |
1550 blist_parser_component_value = g_strndup(text, text_len); | |
1551 break; | |
5228 | 1552 case BLIST_TAG_SETTING: |
1553 blist_parser_setting_value = g_strndup(text, text_len); | |
1554 break; | |
1555 default: | |
1556 break; | |
1557 } | |
1558 } | |
1559 | |
1560 static void blist_error_handler(GMarkupParseContext *context, GError *error, | |
1561 gpointer user_data) { | |
1562 blist_parser_error_occurred = TRUE; | |
1563 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
1564 "Error parsing blist.xml: %s\n", error->message); | |
1565 } | |
1566 | |
1567 static GMarkupParser blist_parser = { | |
1568 blist_start_element_handler, | |
1569 blist_end_element_handler, | |
1570 blist_text_handler, | |
1571 NULL, | |
1572 blist_error_handler | |
1573 }; | |
1574 | |
1575 static gboolean gaim_blist_read(const char *filename) { | |
1576 gchar *contents = NULL; | |
1577 gsize length; | |
1578 GMarkupParseContext *context; | |
1579 GError *error = NULL; | |
1580 | |
1581 gaim_debug(GAIM_DEBUG_INFO, "blist import", | |
1582 "Reading %s\n", filename); | |
1583 if(!g_file_get_contents(filename, &contents, &length, &error)) { | |
1584 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
1585 "Error reading blist: %s\n", error->message); | |
1586 g_error_free(error); | |
1587 return FALSE; | |
1588 } | |
1589 | |
1590 context = g_markup_parse_context_new(&blist_parser, 0, NULL, NULL); | |
1591 | |
1592 if(!g_markup_parse_context_parse(context, contents, length, NULL)) { | |
1593 g_markup_parse_context_free(context); | |
1594 g_free(contents); | |
1595 return FALSE; | |
1596 } | |
1597 | |
1598 if(!g_markup_parse_context_end_parse(context, NULL)) { | |
1599 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
1600 "Error parsing %s\n", filename); | |
1601 g_markup_parse_context_free(context); | |
1602 g_free(contents); | |
1603 return FALSE; | |
1604 } | |
1605 | |
1606 g_markup_parse_context_free(context); | |
1607 g_free(contents); | |
1608 | |
1609 if(blist_parser_error_occurred) | |
1610 return FALSE; | |
1611 | |
1612 gaim_debug(GAIM_DEBUG_INFO, "blist import", "Finished reading %s\n", | |
1613 filename); | |
1614 | |
1615 return TRUE; | |
1616 } | |
1617 | |
1618 void gaim_blist_load() { | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1619 GList *accts; |
5228 | 1620 char *user_dir = gaim_user_dir(); |
1621 char *filename; | |
1622 char *msg; | |
1623 | |
1624 blist_safe_to_write = TRUE; | |
1625 | |
1626 if(!user_dir) | |
1627 return; | |
1628 | |
1629 filename = g_build_filename(user_dir, "blist.xml", NULL); | |
1630 | |
1631 if(g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
1632 if(!gaim_blist_read(filename)) { | |
1633 msg = g_strdup_printf(_("An error was encountered parsing your " | |
1634 "buddy list. It has not been loaded.")); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1635 gaim_notify_error(NULL, NULL, _("Buddy List Error"), msg); |
5228 | 1636 g_free(msg); |
1637 } | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1638 } else if(g_list_length(gaim_accounts_get_all())) { |
5947
ac4dd1d0ee39
[gaim-migrate @ 6388]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1639 GMainContext *ctx; |
ac4dd1d0ee39
[gaim-migrate @ 6388]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1640 |
5228 | 1641 /* rob wants to inform the user that their buddy lists are |
1642 * being converted */ | |
1643 msg = g_strdup_printf(_("Gaim is converting your old buddy lists " | |
1644 "to a new format, which will now be located at %s"), | |
1645 filename); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1646 gaim_notify_info(NULL, NULL, _("Converting Buddy List"), msg); |
5228 | 1647 g_free(msg); |
1648 | |
1649 /* now, let gtk actually display the dialog before we start anything */ | |
5947
ac4dd1d0ee39
[gaim-migrate @ 6388]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1650 ctx = g_main_context_default(); |
ac4dd1d0ee39
[gaim-migrate @ 6388]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1651 |
ac4dd1d0ee39
[gaim-migrate @ 6388]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1652 while(g_main_context_pending(ctx)) |
ac4dd1d0ee39
[gaim-migrate @ 6388]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1653 g_main_context_iteration(ctx, FALSE); |
5228 | 1654 |
1655 /* read in the old lists, then save to the new format */ | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1656 for(accts = gaim_accounts_get_all(); accts; accts = accts->next) { |
5228 | 1657 do_import(accts->data, NULL); |
1658 } | |
1659 gaim_blist_save(); | |
1660 } | |
1661 | |
1662 g_free(filename); | |
1663 } | |
1664 | |
1665 static void blist_print_group_settings(gpointer key, gpointer data, | |
1666 gpointer user_data) { | |
1667 char *key_val; | |
1668 char *data_val; | |
1669 FILE *file = user_data; | |
1670 | |
1671 if(!key || !data) | |
1672 return; | |
1673 | |
1674 key_val = g_markup_escape_text(key, -1); | |
1675 data_val = g_markup_escape_text(data, -1); | |
1676 | |
1677 fprintf(file, "\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
1678 data_val); | |
1679 g_free(key_val); | |
1680 g_free(data_val); | |
1681 } | |
1682 | |
1683 static void blist_print_buddy_settings(gpointer key, gpointer data, | |
1684 gpointer user_data) { | |
1685 char *key_val; | |
1686 char *data_val; | |
1687 FILE *file = user_data; | |
1688 | |
1689 if(!key || !data) | |
1690 return; | |
1691 | |
1692 key_val = g_markup_escape_text(key, -1); | |
1693 data_val = g_markup_escape_text(data, -1); | |
1694 | |
1695 fprintf(file, "\t\t\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
1696 data_val); | |
1697 g_free(key_val); | |
1698 g_free(data_val); | |
1699 } | |
1700 | |
5234 | 1701 static void blist_print_chat_components(gpointer key, gpointer data, |
1702 gpointer user_data) { | |
1703 char *key_val; | |
1704 char *data_val; | |
1705 FILE *file = user_data; | |
1706 | |
1707 if(!key || !data) | |
1708 return; | |
1709 | |
1710 key_val = g_markup_escape_text(key, -1); | |
1711 data_val = g_markup_escape_text(data, -1); | |
1712 | |
1713 fprintf(file, "\t\t\t\t<component name=\"%s\">%s</component>\n", key_val, | |
1714 data_val); | |
1715 g_free(key_val); | |
1716 g_free(data_val); | |
1717 } | |
1718 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1719 static void gaim_blist_write(FILE *file, GaimAccount *exp_acct) { |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1720 GList *accounts; |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1721 GSList *buds; |
5228 | 1722 GaimBlistNode *gnode,*bnode; |
1723 struct group *group; | |
1724 struct buddy *bud; | |
1725 fprintf(file, "<?xml version='1.0' encoding='UTF-8' ?>\n"); | |
1726 fprintf(file, "<gaim version=\"1\">\n"); | |
1727 fprintf(file, "\t<blist>\n"); | |
1728 | |
1729 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
1730 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
1731 continue; | |
1732 group = (struct group *)gnode; | |
1733 if(!exp_acct || gaim_group_on_account(group, exp_acct)) { | |
1734 char *group_name = g_markup_escape_text(group->name, -1); | |
1735 fprintf(file, "\t\t<group name=\"%s\">\n", group_name); | |
1736 g_hash_table_foreach(group->settings, blist_print_group_settings, file); | |
1737 for(bnode = gnode->child; bnode; bnode = bnode->next) { | |
5234 | 1738 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { |
1739 bud = (struct buddy *)bnode; | |
1740 if(!exp_acct || bud->account == exp_acct) { | |
1741 char *bud_name = g_markup_escape_text(bud->name, -1); | |
1742 char *bud_alias = NULL; | |
1743 char *acct_name = g_markup_escape_text(bud->account->username, -1); | |
1744 if(bud->alias) | |
1745 bud_alias= g_markup_escape_text(bud->alias, -1); | |
1746 fprintf(file, "\t\t\t<person name=\"%s\">\n", | |
1747 bud_alias ? bud_alias : bud_name); | |
1748 fprintf(file, "\t\t\t\t<buddy protocol=\"%d\" " | |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1749 "account=\"%s\">\n", |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1750 gaim_account_get_protocol(bud->account), |
5234 | 1751 acct_name); |
1752 fprintf(file, "\t\t\t\t\t<name>%s</name>\n", bud_name); | |
1753 if(bud_alias) { | |
1754 fprintf(file, "\t\t\t\t\t<alias>%s</alias>\n", | |
1755 bud_alias); | |
1756 } | |
1757 g_hash_table_foreach(bud->settings, | |
1758 blist_print_buddy_settings, file); | |
1759 fprintf(file, "\t\t\t\t</buddy>\n"); | |
1760 fprintf(file, "\t\t\t</person>\n"); | |
1761 g_free(bud_name); | |
1762 g_free(bud_alias); | |
1763 g_free(acct_name); | |
5228 | 1764 } |
5234 | 1765 } else if(GAIM_BLIST_NODE_IS_CHAT(bnode)) { |
1766 struct chat *chat = (struct chat *)bnode; | |
1767 if(!exp_acct || chat->account == exp_acct) { | |
1768 char *acct_name = g_markup_escape_text(chat->account->username, -1); | |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1769 fprintf(file, "\t\t\t<chat protocol=\"%d\" account=\"%s\">\n", |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1770 gaim_account_get_protocol(chat->account), |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1771 acct_name); |
5237 | 1772 if(chat->alias) { |
1773 char *chat_alias = g_markup_escape_text(chat->alias, -1); | |
1774 fprintf(file, "\t\t\t\t<alias>%s</alias>\n", chat_alias); | |
1775 g_free(chat_alias); | |
1776 } | |
5234 | 1777 g_hash_table_foreach(chat->components, |
1778 blist_print_chat_components, file); | |
5906 | 1779 /* works for chats too, I don't feel like renaming */ |
1780 g_hash_table_foreach(chat->settings, | |
1781 blist_print_buddy_settings, file); | |
5234 | 1782 fprintf(file, "\t\t\t</chat>\n"); |
5237 | 1783 g_free(acct_name); |
5234 | 1784 } |
5228 | 1785 } |
1786 } | |
1787 fprintf(file, "\t\t</group>\n"); | |
1788 g_free(group_name); | |
1789 } | |
1790 } | |
1791 | |
1792 fprintf(file, "\t</blist>\n"); | |
1793 fprintf(file, "\t<privacy>\n"); | |
1794 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1795 for(accounts = gaim_accounts_get_all(); |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1796 accounts != NULL; |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1797 accounts = accounts->next) { |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1798 |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1799 GaimAccount *account = accounts->data; |
5228 | 1800 char *acct_name = g_markup_escape_text(account->username, -1); |
1801 if(!exp_acct || account == exp_acct) { | |
1802 fprintf(file, "\t\t<account protocol=\"%d\" name=\"%s\" " | |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1803 "mode=\"%d\">\n", gaim_account_get_protocol(account), |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1804 acct_name, account->perm_deny); |
5228 | 1805 for(buds = account->permit; buds; buds = buds->next) { |
1806 char *bud_name = g_markup_escape_text(buds->data, -1); | |
1807 fprintf(file, "\t\t\t<permit>%s</permit>\n", bud_name); | |
1808 g_free(bud_name); | |
1809 } | |
1810 for(buds = account->deny; buds; buds = buds->next) { | |
1811 char *bud_name = g_markup_escape_text(buds->data, -1); | |
1812 fprintf(file, "\t\t\t<block>%s</block>\n", bud_name); | |
1813 g_free(bud_name); | |
1814 } | |
1815 fprintf(file, "\t\t</account>\n"); | |
1816 } | |
1817 g_free(acct_name); | |
1818 } | |
1819 | |
1820 fprintf(file, "\t</privacy>\n"); | |
1821 fprintf(file, "</gaim>\n"); | |
1822 } | |
1823 | |
1824 void gaim_blist_save() { | |
1825 FILE *file; | |
1826 char *user_dir = gaim_user_dir(); | |
1827 char *filename; | |
1828 char *filename_real; | |
1829 | |
1830 if(!user_dir) | |
1831 return; | |
1832 if(!blist_safe_to_write) { | |
1833 gaim_debug(GAIM_DEBUG_WARNING, "blist save", | |
1834 "AHH!! Tried to write the blist before we read it!\n"); | |
1835 return; | |
1836 } | |
1837 | |
1838 file = fopen(user_dir, "r"); | |
1839 if(!file) | |
1840 mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); | |
1841 else | |
1842 fclose(file); | |
1843 | |
1844 filename = g_build_filename(user_dir, "blist.xml.save", NULL); | |
1845 | |
1846 if((file = fopen(filename, "w"))) { | |
1847 gaim_blist_write(file, NULL); | |
1848 fclose(file); | |
1849 chmod(filename, S_IRUSR | S_IWUSR); | |
1850 } else { | |
1851 gaim_debug(GAIM_DEBUG_ERROR, "blist save", "Unable to write %s\n", | |
1852 filename); | |
1853 } | |
1854 | |
1855 filename_real = g_build_filename(user_dir, "blist.xml", NULL); | |
1856 | |
1857 if(rename(filename, filename_real) < 0) | |
1858 gaim_debug(GAIM_DEBUG_ERROR, "blist save", | |
1859 "Error renaming %s to %s\n", filename, filename_real); | |
1860 | |
1861 | |
1862 g_free(filename); | |
1863 g_free(filename_real); | |
1864 } | |
1865 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1866 gboolean gaim_privacy_permit_add(GaimAccount *account, const char *who) { |
5228 | 1867 GSList *d = account->permit; |
1868 char *n = g_strdup(normalize(who)); | |
1869 while(d) { | |
1870 if(!gaim_utf8_strcasecmp(n, normalize(d->data))) | |
1871 break; | |
1872 d = d->next; | |
1873 } | |
1874 g_free(n); | |
1875 if(!d) { | |
1876 account->permit = g_slist_append(account->permit, g_strdup(who)); | |
1877 return TRUE; | |
1878 } | |
1879 | |
1880 return FALSE; | |
1881 } | |
1882 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1883 gboolean gaim_privacy_permit_remove(GaimAccount *account, const char *who) { |
5228 | 1884 GSList *d = account->permit; |
1885 char *n = g_strdup(normalize(who)); | |
1886 while(d) { | |
1887 if(!gaim_utf8_strcasecmp(n, normalize(d->data))) | |
1888 break; | |
1889 d = d->next; | |
1890 } | |
1891 g_free(n); | |
1892 if(d) { | |
1893 account->permit = g_slist_remove(account->permit, d->data); | |
1894 g_free(d->data); | |
1895 return TRUE; | |
1896 } | |
1897 return FALSE; | |
1898 } | |
1899 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1900 gboolean gaim_privacy_deny_add(GaimAccount *account, const char *who) { |
5228 | 1901 GSList *d = account->deny; |
1902 char *n = g_strdup(normalize(who)); | |
1903 while(d) { | |
1904 if(!gaim_utf8_strcasecmp(n, normalize(d->data))) | |
1905 break; | |
1906 d = d->next; | |
1907 } | |
1908 g_free(n); | |
1909 if(!d) { | |
1910 account->deny = g_slist_append(account->deny, g_strdup(who)); | |
1911 return TRUE; | |
1912 } | |
1913 | |
1914 return FALSE; | |
1915 } | |
1916 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1917 gboolean gaim_privacy_deny_remove(GaimAccount *account, const char *who) { |
5228 | 1918 GSList *d = account->deny; |
1919 char *n = g_strdup(normalize(who)); | |
1920 while(d) { | |
1921 if(!gaim_utf8_strcasecmp(n, normalize(d->data))) | |
1922 break; | |
1923 d = d->next; | |
1924 } | |
1925 g_free(n); | |
1926 if(d) { | |
1927 account->deny = g_slist_remove(account->deny, d->data); | |
1928 g_free(d->data); | |
1929 return TRUE; | |
1930 } | |
1931 return FALSE; | |
1932 } | |
1933 | |
1934 void gaim_group_set_setting(struct group *g, const char *key, | |
1935 const char *value) { | |
1936 if(!g) | |
1937 return; | |
1938 g_hash_table_replace(g->settings, g_strdup(key), g_strdup(value)); | |
1939 } | |
1940 | |
1941 char *gaim_group_get_setting(struct group *g, const char *key) { | |
1942 if(!g) | |
1943 return NULL; | |
1944 return g_strdup(g_hash_table_lookup(g->settings, key)); | |
1945 } | |
1946 | |
5906 | 1947 void gaim_chat_set_setting(struct chat *c, const char *key, |
1948 const char *value) | |
1949 { | |
1950 if(!c) | |
1951 return; | |
1952 g_hash_table_replace(c->settings, g_strdup(key), g_strdup(value)); | |
1953 } | |
1954 | |
1955 char *gaim_chat_get_setting(struct chat *c, const char *key) | |
1956 { | |
1957 if(!c) | |
1958 return NULL; | |
1959 return g_strdup(g_hash_table_lookup(c->settings, key)); | |
1960 } | |
1961 | |
5228 | 1962 void gaim_buddy_set_setting(struct buddy *b, const char *key, |
1963 const char *value) { | |
1964 if(!b) | |
1965 return; | |
1966 g_hash_table_replace(b->settings, g_strdup(key), g_strdup(value)); | |
1967 } | |
1968 | |
1969 char *gaim_buddy_get_setting(struct buddy *b, const char *key) { | |
1970 if(!b) | |
1971 return NULL; | |
1972 return g_strdup(g_hash_table_lookup(b->settings, key)); | |
1973 } | |
1974 | |
1975 void gaim_set_blist_ui_ops(struct gaim_blist_ui_ops *ops) | |
1976 { | |
1977 blist_ui_ops = ops; | |
1978 } | |
1979 | |
1980 struct gaim_blist_ui_ops * | |
1981 gaim_get_blist_ui_ops(void) | |
1982 { | |
1983 return blist_ui_ops; | |
1984 } | |
1985 | |
1986 int gaim_blist_get_group_size(struct group *group, gboolean offline) { | |
1987 if(!group) | |
1988 return 0; | |
1989 | |
5277 | 1990 return offline ? group->totalsize : group->currentsize; |
5228 | 1991 } |
1992 | |
1993 int gaim_blist_get_group_online_count(struct group *group) { | |
1994 if(!group) | |
1995 return 0; | |
1996 | |
5277 | 1997 return group->online; |
5228 | 1998 } |
1999 | |
2000 |