Mercurial > pidgin
annotate src/blist.c @ 6777:513fd80bcd2e
[gaim-migrate @ 7315]
This looks like it fixes the (null) group problem in MSN. Thanks faceprint.
Why it happens, we don't know.. it really shouldn't, and may be a problem
in the future...
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sun, 07 Sep 2003 07:13:48 +0000 |
parents | 46e1c07f4de5 |
children | b8bc8dd411cc |
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" |
6034 | 26 #include "multi.h" |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
27 #include "notify.h" |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
28 #include "prefs.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
29 #include "privacy.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
30 #include "prpl.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
31 #include "server.h" |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
32 #include "signals.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
33 #include "util.h" |
5228 | 34 |
35 #define PATHSIZE 1024 | |
36 | |
37 struct gaim_buddy_list *gaimbuddylist = NULL; | |
38 static struct gaim_blist_ui_ops *blist_ui_ops = NULL; | |
39 | |
40 /***************************************************************************** | |
41 * Private Utility functions * | |
42 *****************************************************************************/ | |
43 static GaimBlistNode *gaim_blist_get_last_sibling(GaimBlistNode *node) | |
44 { | |
45 GaimBlistNode *n = node; | |
46 if (!n) | |
47 return NULL; | |
48 while (n->next) | |
49 n = n->next; | |
50 return n; | |
51 } | |
6695 | 52 |
5228 | 53 static GaimBlistNode *gaim_blist_get_last_child(GaimBlistNode *node) |
54 { | |
55 if (!node) | |
56 return NULL; | |
57 return gaim_blist_get_last_sibling(node->child); | |
58 } | |
59 | |
5247 | 60 struct _gaim_hbuddy { |
61 char *name; | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
62 GaimAccount *account; |
5758 | 63 GaimBlistNode *group; |
5247 | 64 }; |
65 | |
66 static guint _gaim_blist_hbuddy_hash (struct _gaim_hbuddy *hb) | |
67 { | |
68 return g_str_hash(hb->name); | |
69 } | |
70 | |
71 static guint _gaim_blist_hbuddy_equal (struct _gaim_hbuddy *hb1, struct _gaim_hbuddy *hb2) | |
72 { | |
5758 | 73 return ((!strcmp(hb1->name, hb2->name)) && hb1->account == hb2->account && hb1->group == hb2->group); |
5247 | 74 } |
75 | |
6742 | 76 static void _gaim_blist_hbuddy_free_key(struct _gaim_hbuddy *hb) |
77 { | |
78 g_free(hb->name); | |
79 g_free(hb); | |
80 } | |
81 | |
6006 | 82 static void blist_pref_cb(const char *name, GaimPrefType typ, gpointer value, gpointer data) |
83 { | |
6012 | 84 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
6695 | 85 GaimBlistNode *gnode, *cnode, *bnode; |
6012 | 86 |
87 if (!ops) | |
88 return; | |
89 | |
6695 | 90 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
91 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
6012 | 92 continue; |
6695 | 93 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
94 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
95 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
96 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
97 continue; | |
98 ops->update(gaimbuddylist, bnode); | |
99 } | |
100 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
101 ops->update(gaimbuddylist, cnode); | |
102 } | |
6012 | 103 } |
104 } | |
6006 | 105 } |
106 | |
5228 | 107 /***************************************************************************** |
108 * Public API functions * | |
109 *****************************************************************************/ | |
110 | |
111 struct gaim_buddy_list *gaim_blist_new() | |
112 { | |
113 struct gaim_buddy_list *gbl = g_new0(struct gaim_buddy_list, 1); | |
114 | |
115 gbl->ui_ops = gaim_get_blist_ui_ops(); | |
116 | |
6742 | 117 gbl->buddies = g_hash_table_new_full((GHashFunc)_gaim_blist_hbuddy_hash, |
118 (GEqualFunc)_gaim_blist_hbuddy_equal, | |
119 (GDestroyNotify)_gaim_blist_hbuddy_free_key, NULL); | |
5247 | 120 |
5228 | 121 if (gbl->ui_ops != NULL && gbl->ui_ops->new_list != NULL) |
122 gbl->ui_ops->new_list(gbl); | |
123 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
124 gaim_prefs_connect_callback("/core/buddies/use_server_alias", |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
125 blist_pref_cb, NULL); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
126 |
6006 | 127 |
5228 | 128 return gbl; |
129 } | |
130 | |
131 void | |
132 gaim_set_blist(struct gaim_buddy_list *list) | |
133 { | |
134 gaimbuddylist = list; | |
135 } | |
136 | |
137 struct gaim_buddy_list * | |
138 gaim_get_blist(void) | |
139 { | |
140 return gaimbuddylist; | |
141 } | |
142 | |
6695 | 143 void gaim_blist_show () |
5228 | 144 { |
145 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
146 if (ops) | |
147 ops->show(gaimbuddylist); | |
148 } | |
149 | |
150 void gaim_blist_destroy() | |
151 { | |
152 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
153 if (ops) | |
154 ops->destroy(gaimbuddylist); | |
155 } | |
156 | |
157 void gaim_blist_set_visible (gboolean show) | |
158 { | |
159 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
160 if (ops) | |
161 ops->set_visible(gaimbuddylist, show); | |
162 } | |
163 | |
6695 | 164 void gaim_blist_update_buddy_status (GaimBuddy *buddy, int status) |
5228 | 165 { |
5266
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
166 struct gaim_blist_ui_ops *ops; |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
167 |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
168 if (buddy->uc == status) |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
169 return; |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
170 |
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
171 ops = gaimbuddylist->ui_ops; |
5228 | 172 |
5305 | 173 if((status & UC_UNAVAILABLE) != (buddy->uc & UC_UNAVAILABLE)) { |
174 if(status & UC_UNAVAILABLE) | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
175 gaim_signal_emit(gaim_blist_get_handle(), "buddy-away", buddy); |
5305 | 176 else |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
177 gaim_signal_emit(gaim_blist_get_handle(), "buddy-back", buddy); |
5305 | 178 } |
5228 | 179 |
5305 | 180 buddy->uc = status; |
5228 | 181 if (ops) |
182 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
183 } | |
184 | |
6695 | 185 static gboolean presence_update_timeout_cb(GaimBuddy *buddy) { |
5228 | 186 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
187 GaimConversation *conv; |
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
188 |
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
189 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); |
5228 | 190 |
191 if(buddy->present == GAIM_BUDDY_SIGNING_ON) { | |
192 buddy->present = GAIM_BUDDY_ONLINE; | |
193 } else if(buddy->present == GAIM_BUDDY_SIGNING_OFF) { | |
194 buddy->present = GAIM_BUDDY_OFFLINE; | |
195 } | |
196 | |
197 buddy->timer = 0; | |
198 | |
199 if (ops) | |
200 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
201 | |
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
202 if (conv) { |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
203 if (buddy->present == GAIM_BUDDY_ONLINE) |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
204 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_ONLINE); |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
205 else if (buddy->present == GAIM_BUDDY_OFFLINE) |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
206 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_OFFLINE); |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
207 } |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
208 |
5228 | 209 return FALSE; |
210 } | |
211 | |
6695 | 212 void gaim_blist_update_buddy_presence(GaimBuddy *buddy, int presence) { |
5228 | 213 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
214 gboolean do_timer = FALSE; | |
215 | |
216 if (!GAIM_BUDDY_IS_ONLINE(buddy) && presence) { | |
217 buddy->present = GAIM_BUDDY_SIGNING_ON; | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
218 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-on", buddy); |
5228 | 219 do_timer = TRUE; |
6695 | 220 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online++; |
221 if(((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 1) | |
222 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online++; | |
5228 | 223 } else if(GAIM_BUDDY_IS_ONLINE(buddy) && !presence) { |
224 buddy->present = GAIM_BUDDY_SIGNING_OFF; | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
225 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-off", buddy); |
5228 | 226 do_timer = TRUE; |
6695 | 227 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online--; |
228 if(((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 0) | |
229 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online--; | |
5228 | 230 } |
231 | |
232 if(do_timer) { | |
233 if(buddy->timer > 0) | |
234 g_source_remove(buddy->timer); | |
235 buddy->timer = g_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
236 } | |
237 | |
238 if (ops) | |
239 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
240 } | |
241 | |
242 | |
6695 | 243 void gaim_blist_update_buddy_idle (GaimBuddy *buddy, int idle) |
5228 | 244 { |
245 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
246 buddy->idle = idle; | |
247 if (ops) | |
248 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
249 } | |
6695 | 250 |
251 void gaim_blist_update_buddy_evil (GaimBuddy *buddy, int warning) | |
5228 | 252 { |
253 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
254 buddy->evil = warning; | |
255 if (ops) | |
256 ops->update(gaimbuddylist,(GaimBlistNode*)buddy); | |
257 } | |
6695 | 258 |
259 void gaim_blist_update_buddy_icon(GaimBuddy *buddy) { | |
5228 | 260 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
261 if(ops) | |
262 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
263 } | |
6695 | 264 |
265 void gaim_blist_rename_buddy (GaimBuddy *buddy, const char *name) | |
5228 | 266 { |
267 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
5634 | 268 g_free(buddy->name); |
5228 | 269 buddy->name = g_strdup(name); |
270 if (ops) | |
271 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
272 } | |
5234 | 273 |
6695 | 274 void gaim_blist_alias_chat(GaimBlistChat *chat, const char *alias) |
5234 | 275 { |
276 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
277 | |
5237 | 278 g_free(chat->alias); |
5234 | 279 |
5237 | 280 if(alias && strlen(alias)) |
281 chat->alias = g_strdup(alias); | |
282 else | |
283 chat->alias = NULL; | |
284 | |
5234 | 285 if(ops) |
286 ops->update(gaimbuddylist, (GaimBlistNode*)chat); | |
287 } | |
288 | |
6695 | 289 void gaim_blist_alias_buddy (GaimBuddy *buddy, const char *alias) |
5228 | 290 { |
291 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5634
diff
changeset
|
292 GaimConversation *conv; |
5228 | 293 |
294 g_free(buddy->alias); | |
295 | |
296 if(alias && strlen(alias)) | |
297 buddy->alias = g_strdup(alias); | |
298 else | |
299 buddy->alias = NULL; | |
300 | |
301 if (ops) | |
302 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
303 | |
304 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); | |
305 | |
306 if (conv) | |
307 gaim_conversation_autoset_title(conv); | |
308 } | |
309 | |
6695 | 310 void gaim_blist_server_alias_buddy (GaimBuddy *buddy, const char *alias) |
6058 | 311 { |
312 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
313 GaimConversation *conv; | |
314 | |
315 g_free(buddy->server_alias); | |
316 | |
317 if(alias && strlen(alias) && g_utf8_validate(alias, -1, NULL)) | |
318 buddy->server_alias = g_strdup(alias); | |
319 else | |
320 buddy->server_alias = NULL; | |
321 | |
322 if (ops) | |
323 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
324 | |
325 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); | |
326 | |
327 if (conv) | |
328 gaim_conversation_autoset_title(conv); | |
329 } | |
330 | |
6695 | 331 void gaim_blist_rename_group(GaimGroup *group, const char *name) |
5228 | 332 { |
333 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
6695 | 334 GaimGroup *dest_group; |
5346 | 335 GaimBlistNode *prev, *child, *next; |
336 GSList *accts; | |
337 | |
338 if(!name || !strlen(name) || !strcmp(name, group->name)) { | |
339 /* nothing to do here */ | |
340 return; | |
341 } else if((dest_group = gaim_find_group(name))) { | |
342 /* here we're merging two groups */ | |
343 prev = gaim_blist_get_last_child((GaimBlistNode*)dest_group); | |
344 child = ((GaimBlistNode*)group)->child; | |
345 | |
346 while(child) | |
347 { | |
348 next = child->next; | |
6695 | 349 if(GAIM_BLIST_NODE_IS_CONTACT(child)) { |
350 GaimBlistNode *bnode; | |
351 gaim_blist_add_contact((GaimContact *)child, dest_group, prev); | |
352 for(bnode = child->child; bnode; bnode = bnode->next) | |
353 gaim_blist_add_buddy((GaimBuddy*)bnode, (GaimContact*)child, | |
354 NULL, bnode->prev); | |
5346 | 355 prev = child; |
356 } else if(GAIM_BLIST_NODE_IS_CHAT(child)) { | |
6695 | 357 gaim_blist_add_chat((GaimBlistChat *)child, dest_group, prev); |
5346 | 358 prev = child; |
359 } else { | |
360 gaim_debug(GAIM_DEBUG_ERROR, "blist", | |
361 "Unknown child type in group %s\n", group->name); | |
362 } | |
363 child = next; | |
364 } | |
365 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
|
366 GaimAccount *account = accts->data; |
5346 | 367 serv_rename_group(account->gc, group, name); |
368 } | |
369 gaim_blist_remove_group(group); | |
370 } else { | |
371 /* a simple rename */ | |
372 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
|
373 GaimAccount *account = accts->data; |
5346 | 374 serv_rename_group(account->gc, group, name); |
375 } | |
376 g_free(group->name); | |
377 group->name = g_strdup(name); | |
378 if (ops) | |
379 ops->update(gaimbuddylist, (GaimBlistNode*)group); | |
380 } | |
5228 | 381 } |
5234 | 382 |
6695 | 383 GaimBlistChat *gaim_blist_chat_new(GaimAccount *account, const char *alias, GHashTable *components) |
5234 | 384 { |
6695 | 385 GaimBlistChat *chat; |
5234 | 386 struct gaim_blist_ui_ops *ops; |
387 | |
5237 | 388 if(!components) |
5234 | 389 return NULL; |
390 | |
6695 | 391 chat = g_new0(GaimBlistChat, 1); |
5234 | 392 chat->account = account; |
5237 | 393 if(alias && strlen(alias)) |
394 chat->alias = g_strdup(alias); | |
5234 | 395 chat->components = components; |
5906 | 396 chat->settings = g_hash_table_new_full(g_str_hash, g_str_equal, |
397 g_free, g_free); | |
5234 | 398 |
399 ((GaimBlistNode*)chat)->type = GAIM_BLIST_CHAT_NODE; | |
400 | |
401 ops = gaim_get_blist_ui_ops(); | |
402 | |
403 if (ops != NULL && ops->new_node != NULL) | |
404 ops->new_node((GaimBlistNode *)chat); | |
405 | |
406 return chat; | |
407 } | |
408 | |
6695 | 409 char *gaim_blist_chat_get_display_name(GaimBlistChat *chat) |
6034 | 410 { |
411 char *name; | |
412 | |
413 if(chat->alias){ | |
414 name = g_strdup(chat->alias); | |
415 } | |
416 else{ | |
417 GList *parts; | |
418 GaimPlugin *prpl; | |
419 GaimPluginProtocolInfo *prpl_info; | |
420 struct proto_chat_entry *pce; | |
421 | |
422 prpl = gaim_find_prpl(gaim_account_get_protocol(chat->account)); | |
423 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
424 | |
425 parts = prpl_info->chat_info(chat->account->gc); | |
426 | |
427 pce = parts->data; | |
428 name = g_markup_escape_text(g_hash_table_lookup(chat->components, | |
429 pce->identifier), -1); | |
430 g_list_free(parts); | |
431 } | |
432 | |
433 return name; | |
434 } | |
435 | |
6695 | 436 GaimBuddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias) |
5228 | 437 { |
6695 | 438 GaimBuddy *b; |
5228 | 439 struct gaim_blist_ui_ops *ops; |
440 | |
6695 | 441 b = g_new0(GaimBuddy, 1); |
5228 | 442 b->account = account; |
443 b->name = g_strdup(screenname); | |
444 b->alias = g_strdup(alias); | |
445 b->settings = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); | |
446 ((GaimBlistNode*)b)->type = GAIM_BLIST_BUDDY_NODE; | |
447 | |
448 ops = gaim_get_blist_ui_ops(); | |
449 | |
450 if (ops != NULL && ops->new_node != NULL) | |
451 ops->new_node((GaimBlistNode *)b); | |
452 | |
453 return b; | |
454 } | |
5634 | 455 |
6695 | 456 void gaim_blist_add_chat(GaimBlistChat *chat, GaimGroup *group, GaimBlistNode *node) |
5234 | 457 { |
458 GaimBlistNode *n = node, *cnode = (GaimBlistNode*)chat; | |
6695 | 459 GaimGroup *g = group; |
5234 | 460 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
461 gboolean save = FALSE; | |
462 | |
6774 | 463 |
464 g_return_if_fail(chat != NULL); | |
465 g_return_if_fail(GAIM_BLIST_NODE_IS_CHAT((GaimBlistNode*)chat)); | |
466 | |
5234 | 467 if (!n) { |
468 if (!g) { | |
469 g = gaim_group_new(_("Chats")); | |
5634 | 470 gaim_blist_add_group(g, |
471 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5234 | 472 } |
473 } else { | |
6695 | 474 g = (GaimGroup*)n->parent; |
5234 | 475 } |
476 | |
477 /* if we're moving to overtop of ourselves, do nothing */ | |
478 if(cnode == n) | |
479 return; | |
480 | |
481 if (cnode->parent) { | |
482 /* This chat was already in the list and is | |
483 * being moved. | |
484 */ | |
6695 | 485 ((GaimGroup *)cnode->parent)->totalsize--; |
5855 | 486 if (gaim_account_is_connected(chat->account)) { |
6695 | 487 ((GaimGroup *)cnode->parent)->online--; |
488 ((GaimGroup *)cnode->parent)->currentsize--; | |
5287 | 489 } |
5234 | 490 if(cnode->next) |
491 cnode->next->prev = cnode->prev; | |
492 if(cnode->prev) | |
493 cnode->prev->next = cnode->next; | |
494 if(cnode->parent->child == cnode) | |
495 cnode->parent->child = cnode->next; | |
496 | |
497 ops->remove(gaimbuddylist, cnode); | |
498 | |
499 save = TRUE; | |
500 } | |
501 | |
502 if (n) { | |
503 if(n->next) | |
504 n->next->prev = cnode; | |
505 cnode->next = n->next; | |
506 cnode->prev = n; | |
507 cnode->parent = n->parent; | |
508 n->next = cnode; | |
6695 | 509 ((GaimGroup *)n->parent)->totalsize++; |
5855 | 510 if (gaim_account_is_connected(chat->account)) { |
6695 | 511 ((GaimGroup *)n->parent)->online++; |
512 ((GaimGroup *)n->parent)->currentsize++; | |
5287 | 513 } |
5234 | 514 } else { |
5634 | 515 if(((GaimBlistNode*)g)->child) |
516 ((GaimBlistNode*)g)->child->prev = cnode; | |
517 cnode->next = ((GaimBlistNode*)g)->child; | |
518 cnode->prev = NULL; | |
5234 | 519 ((GaimBlistNode*)g)->child = cnode; |
520 cnode->parent = (GaimBlistNode*)g; | |
5277 | 521 g->totalsize++; |
5855 | 522 if (gaim_account_is_connected(chat->account)) { |
5287 | 523 g->online++; |
5277 | 524 g->currentsize++; |
5287 | 525 } |
5234 | 526 } |
527 | |
528 if (ops) | |
529 ops->update(gaimbuddylist, (GaimBlistNode*)cnode); | |
530 if (save) | |
531 gaim_blist_save(); | |
532 } | |
533 | |
6695 | 534 void gaim_blist_add_buddy (GaimBuddy *buddy, GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
5228 | 535 { |
6695 | 536 GaimBlistNode *cnode, *bnode; |
537 GaimGroup *g; | |
538 GaimContact *c; | |
5228 | 539 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
6695 | 540 gboolean save = FALSE; |
5247 | 541 struct _gaim_hbuddy *hb; |
6695 | 542 |
543 g_return_if_fail(buddy != NULL); | |
6774 | 544 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY((GaimBlistNode*)buddy)); |
6695 | 545 |
546 bnode = (GaimBlistNode *)buddy; | |
5228 | 547 |
6695 | 548 /* if we're moving to overtop of ourselves, do nothing */ |
549 if(bnode == node || (!node && bnode->parent && | |
550 contact && bnode->parent == (GaimBlistNode*)contact | |
551 && bnode == bnode->parent->child)) | |
552 return; | |
553 | |
554 if(node && GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
555 c = (GaimContact*)node->parent; | |
556 g = (GaimGroup*)node->parent->parent; | |
557 } else if(contact) { | |
558 c = contact; | |
559 g = (GaimGroup*)((GaimBlistNode*)c)->parent; | |
560 } else { | |
561 if(group) { | |
562 g = group; | |
563 } else { | |
5228 | 564 g = gaim_group_new(_("Buddies")); |
5634 | 565 gaim_blist_add_group(g, |
566 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5228 | 567 } |
6695 | 568 c = gaim_contact_new(); |
569 gaim_blist_add_contact(c, g, | |
570 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
5228 | 571 } |
572 | |
6695 | 573 cnode = (GaimBlistNode *)c; |
5228 | 574 |
6695 | 575 if(bnode->parent) { |
576 if(GAIM_BUDDY_IS_ONLINE(buddy)) { | |
577 ((GaimContact*)bnode->parent)->online--; | |
578 if(((GaimContact*)bnode->parent)->online == 0) | |
579 ((GaimGroup*)bnode->parent->parent)->online--; | |
580 } | |
581 if(gaim_account_is_connected(buddy->account)) { | |
582 ((GaimContact*)bnode->parent)->currentsize--; | |
583 if(((GaimContact*)bnode->parent)->currentsize == 0) | |
584 ((GaimGroup*)bnode->parent->parent)->currentsize--; | |
585 } | |
586 ((GaimContact*)bnode->parent)->totalsize--; | |
587 /* the group totalsize will be taken care of by remove_contact below */ | |
588 | |
589 if(bnode->parent->parent != (GaimBlistNode*)g) | |
590 serv_move_buddy(buddy, (GaimGroup *)bnode->parent->parent, g); | |
5277 | 591 |
5228 | 592 if(bnode->next) |
593 bnode->next->prev = bnode->prev; | |
594 if(bnode->prev) | |
595 bnode->prev->next = bnode->next; | |
6695 | 596 if(bnode->parent->child == bnode) { |
5228 | 597 bnode->parent->child = bnode->next; |
6695 | 598 if(!bnode->parent->child) |
599 gaim_blist_remove_contact((GaimContact*)bnode->parent); | |
600 } | |
5228 | 601 |
602 ops->remove(gaimbuddylist, bnode); | |
603 | |
604 save = TRUE; | |
6742 | 605 |
606 if(bnode->parent->parent != (GaimBlistNode*)g) { | |
607 hb = g_new(struct _gaim_hbuddy, 1); | |
608 hb->name = normalize(buddy->name); | |
609 hb->account = buddy->account; | |
610 hb->group = bnode->parent->parent; | |
6775 | 611 g_hash_table_remove(gaimbuddylist->buddies, hb); |
6742 | 612 g_free(hb); |
613 } | |
5228 | 614 } |
615 | |
6695 | 616 if(node && GAIM_BLIST_NODE_IS_BUDDY(node)) { |
617 if(node->next) | |
618 node->next->prev = bnode; | |
619 bnode->next = node->next; | |
620 bnode->prev = node; | |
621 bnode->parent = node->parent; | |
622 node->next = bnode; | |
5228 | 623 } else { |
6695 | 624 if(cnode->child) |
625 cnode->child->prev = bnode; | |
626 bnode->prev = NULL; | |
627 bnode->next = cnode->child; | |
628 cnode->child = bnode; | |
629 bnode->parent = cnode; | |
5228 | 630 } |
631 | |
6695 | 632 if(GAIM_BUDDY_IS_ONLINE(buddy)) { |
633 ((GaimContact*)bnode->parent)->online++; | |
634 if(((GaimContact*)bnode->parent)->online == 1) | |
635 ((GaimGroup*)bnode->parent->parent)->online++; | |
636 } | |
637 if(gaim_account_is_connected(buddy->account)) { | |
638 ((GaimContact*)bnode->parent)->currentsize++; | |
639 if(((GaimContact*)bnode->parent)->currentsize == 1) | |
640 ((GaimGroup*)bnode->parent->parent)->currentsize++; | |
641 } | |
642 ((GaimContact*)bnode->parent)->totalsize++; | |
643 | |
644 | |
6742 | 645 hb = g_new(struct _gaim_hbuddy, 1); |
5247 | 646 hb->name = g_strdup(normalize(buddy->name)); |
647 hb->account = buddy->account; | |
6695 | 648 hb->group = ((GaimBlistNode*)buddy)->parent->parent; |
5247 | 649 |
6742 | 650 g_hash_table_replace(gaimbuddylist->buddies, hb, buddy); |
5247 | 651 |
5228 | 652 if (ops) |
653 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
654 if (save) | |
655 gaim_blist_save(); | |
656 } | |
657 | |
6695 | 658 GaimContact *gaim_contact_new() |
5228 | 659 { |
6695 | 660 struct gaim_blist_ui_ops *ops; |
661 GaimContact *c = g_new0(GaimContact, 1); | |
662 ((GaimBlistNode*)c)->type = GAIM_BLIST_CONTACT_NODE; | |
663 | |
664 c->totalsize = c->currentsize = c->online = 0; | |
665 | |
666 ops = gaim_get_blist_ui_ops(); | |
667 if (ops != NULL && ops->new_node != NULL) | |
668 ops->new_node((GaimBlistNode *)c); | |
669 | |
670 return c; | |
671 } | |
672 | |
6755 | 673 void gaim_contact_set_alias(GaimContact* contact, const char *alias) |
674 { | |
675 g_return_if_fail(contact != NULL); | |
676 | |
677 if(contact->alias) | |
678 g_free(contact->alias); | |
679 | |
680 contact->alias = g_strdup(alias); | |
681 } | |
682 | |
683 const char *gaim_contact_get_alias(GaimContact* contact) | |
684 { | |
685 return contact ? contact->alias : NULL; | |
686 } | |
687 | |
6695 | 688 GaimGroup *gaim_group_new(const char *name) |
689 { | |
690 GaimGroup *g = gaim_find_group(name); | |
5228 | 691 |
692 if (!g) { | |
693 struct gaim_blist_ui_ops *ops; | |
6695 | 694 g= g_new0(GaimGroup, 1); |
5228 | 695 g->name = g_strdup(name); |
5277 | 696 g->totalsize = 0; |
697 g->currentsize = 0; | |
698 g->online = 0; | |
5228 | 699 g->settings = g_hash_table_new_full(g_str_hash, g_str_equal, |
700 g_free, g_free); | |
701 ((GaimBlistNode*)g)->type = GAIM_BLIST_GROUP_NODE; | |
702 | |
703 ops = gaim_get_blist_ui_ops(); | |
704 | |
705 if (ops != NULL && ops->new_node != NULL) | |
706 ops->new_node((GaimBlistNode *)g); | |
707 | |
708 } | |
709 return g; | |
710 } | |
711 | |
6695 | 712 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
713 { | |
714 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
715 GaimGroup *g; | |
6742 | 716 GaimBlistNode *gnode, *cnode, *bnode; |
6695 | 717 gboolean save = FALSE; |
718 | |
6774 | 719 g_return_if_fail(contact != NULL); |
720 g_return_if_fail(GAIM_BLIST_NODE_IS_CONTACT((GaimBlistNode*)contact)); | |
6695 | 721 |
722 if(node && (GAIM_BLIST_NODE_IS_CONTACT(node) || | |
723 GAIM_BLIST_NODE_IS_CHAT(node))) | |
724 g = (GaimGroup*)node->parent; | |
725 else if(group) | |
726 g = group; | |
727 else { | |
728 g = gaim_group_new(_("Buddies")); | |
729 gaim_blist_add_group(g, | |
730 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
731 } | |
732 | |
733 gnode = (GaimBlistNode*)g; | |
734 cnode = (GaimBlistNode*)contact; | |
735 | |
736 if(cnode->parent) { | |
6731 | 737 if(cnode->parent->child == cnode) |
738 cnode->parent->child = cnode->next; | |
6695 | 739 if(cnode->prev) |
740 cnode->prev->next = cnode->next; | |
741 if(cnode->next) | |
742 cnode->next->prev = cnode->prev; | |
743 | |
744 | |
745 if(contact->online > 0) | |
746 ((GaimGroup*)cnode->parent)->online--; | |
747 if(contact->currentsize > 0) | |
748 ((GaimGroup*)cnode->parent)->currentsize--; | |
749 ((GaimGroup*)cnode->parent)->totalsize--; | |
750 | |
6731 | 751 ops->remove(gaimbuddylist, cnode); |
752 | |
6695 | 753 save = TRUE; |
6742 | 754 |
755 if(cnode->parent != gnode) { | |
756 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
757 GaimBuddy *b = (GaimBuddy*)bnode; | |
758 | |
759 struct _gaim_hbuddy *hb = g_new(struct _gaim_hbuddy, 1); | |
760 hb->name = g_strdup(normalize(b->name)); | |
761 hb->account = b->account; | |
762 hb->group = cnode->parent; | |
763 | |
6776 | 764 g_hash_table_remove(gaimbuddylist->buddies, hb); |
6742 | 765 |
766 hb->group = gnode; | |
767 g_hash_table_replace(gaimbuddylist->buddies, hb, b); | |
768 | |
769 if(b->account->gc) | |
770 serv_move_buddy(b, (GaimGroup*)cnode->parent, g); | |
771 } | |
772 } | |
6695 | 773 } |
774 | |
6775 | 775 |
6695 | 776 if(node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
777 GAIM_BLIST_NODE_IS_CHAT(node))) { | |
778 if(node->next) | |
779 node->next->prev = cnode; | |
780 cnode->next = node->next; | |
781 cnode->prev = node; | |
782 cnode->parent = node->parent; | |
783 node->next = cnode; | |
784 } else { | |
785 if(gnode->child) | |
786 gnode->child->prev = cnode; | |
787 cnode->prev = NULL; | |
788 cnode->next = gnode->child; | |
789 gnode->child = cnode; | |
790 cnode->parent = gnode; | |
791 } | |
792 | |
793 if(contact->online > 0) | |
794 g->online++; | |
795 if(contact->currentsize > 0) | |
796 g->currentsize++; | |
797 g->totalsize++; | |
798 | |
799 if(ops && cnode->child) | |
800 ops->update(gaimbuddylist, cnode); | |
6775 | 801 |
802 for(bnode = cnode->child; bnode; bnode = bnode->next) | |
803 ops->update(gaimbuddylist, bnode); | |
804 | |
6695 | 805 if (save) |
806 gaim_blist_save(); | |
807 } | |
808 | |
809 void gaim_blist_add_group (GaimGroup *group, GaimBlistNode *node) | |
5228 | 810 { |
811 struct gaim_blist_ui_ops *ops; | |
812 GaimBlistNode *gnode = (GaimBlistNode*)group; | |
813 gboolean save = FALSE; | |
814 | |
6774 | 815 g_return_if_fail(group != NULL); |
816 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP((GaimBlistNode*)group)); | |
817 | |
5228 | 818 if (!gaimbuddylist) |
819 gaimbuddylist = gaim_blist_new(); | |
820 ops = gaimbuddylist->ui_ops; | |
821 | |
822 if (!gaimbuddylist->root) { | |
823 gaimbuddylist->root = gnode; | |
824 return; | |
825 } | |
826 | |
827 /* if we're moving to overtop of ourselves, do nothing */ | |
828 if(gnode == node) | |
829 return; | |
830 | |
831 if (gaim_find_group(group->name)) { | |
832 /* This is just being moved */ | |
833 | |
834 ops->remove(gaimbuddylist, (GaimBlistNode*)group); | |
835 | |
836 if(gnode == gaimbuddylist->root) | |
837 gaimbuddylist->root = gnode->next; | |
838 if(gnode->prev) | |
839 gnode->prev->next = gnode->next; | |
840 if(gnode->next) | |
841 gnode->next->prev = gnode->prev; | |
842 | |
843 save = TRUE; | |
844 } | |
845 | |
6695 | 846 if (node && GAIM_BLIST_NODE_IS_GROUP(node)) { |
5634 | 847 gnode->next = node->next; |
848 gnode->prev = node; | |
849 if(node->next) | |
850 node->next->prev = gnode; | |
851 node->next = gnode; | |
852 } else { | |
853 gaimbuddylist->root->prev = gnode; | |
854 gnode->next = gaimbuddylist->root; | |
855 gnode->prev = NULL; | |
856 gaimbuddylist->root = gnode; | |
857 } | |
858 | |
5228 | 859 |
860 if (ops) { | |
861 ops->update(gaimbuddylist, gnode); | |
862 for(node = gnode->child; node; node = node->next) | |
863 ops->update(gaimbuddylist, node); | |
864 } | |
865 if (save) | |
866 gaim_blist_save(); | |
867 } | |
868 | |
6695 | 869 void gaim_blist_remove_contact(GaimContact* contact) |
5228 | 870 { |
871 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
872 | |
6695 | 873 GaimBlistNode *gnode, *cnode = (GaimBlistNode*)contact; |
874 | |
875 gnode = cnode->parent; | |
876 | |
877 if(cnode->child) { | |
878 while(cnode->child) { | |
879 gaim_blist_remove_buddy((GaimBuddy*)cnode->child); | |
880 } | |
881 } else { | |
882 if(ops) | |
883 ops->remove(gaimbuddylist, cnode); | |
884 | |
885 if(gnode->child == cnode) | |
886 gnode->child = cnode->next; | |
887 if(cnode->prev) | |
888 cnode->prev->next = cnode->next; | |
889 if(cnode->next) | |
890 cnode->next->prev = cnode->prev; | |
891 | |
892 g_free(contact); | |
893 } | |
894 } | |
895 | |
6742 | 896 void gaim_blist_remove_buddy (GaimBuddy *buddy) |
6695 | 897 { |
898 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
899 | |
900 GaimBlistNode *cnode, *node = (GaimBlistNode*)buddy; | |
901 GaimGroup *group; | |
6742 | 902 struct _gaim_hbuddy hb; |
5228 | 903 |
6695 | 904 cnode = node->parent; |
905 group = (GaimGroup *)cnode->parent; | |
5228 | 906 |
6695 | 907 if(GAIM_BUDDY_IS_ONLINE(buddy)) { |
908 ((GaimContact*)cnode)->online--; | |
909 if(((GaimContact*)cnode)->online == 0) | |
910 group->online--; | |
911 } | |
912 if(gaim_account_is_connected(buddy->account)) { | |
913 ((GaimContact*)cnode)->currentsize--; | |
914 if(((GaimContact*)cnode)->currentsize == 0) | |
915 group->currentsize--; | |
916 } | |
917 ((GaimContact*)cnode)->totalsize--; | |
918 | |
5228 | 919 if (node->prev) |
920 node->prev->next = node->next; | |
921 if (node->next) | |
922 node->next->prev = node->prev; | |
6695 | 923 if(cnode->child == node) { |
924 cnode->child = node->next; | |
925 } | |
5228 | 926 |
6755 | 927 |
5247 | 928 hb.name = normalize(buddy->name); |
929 hb.account = buddy->account; | |
6695 | 930 hb.group = ((GaimBlistNode*)buddy)->parent->parent; |
6742 | 931 g_hash_table_remove(gaimbuddylist->buddies, &hb); |
5247 | 932 |
5292 | 933 if(buddy->timer > 0) |
934 g_source_remove(buddy->timer); | |
935 | |
5228 | 936 ops->remove(gaimbuddylist, node); |
937 g_hash_table_destroy(buddy->settings); | |
938 g_free(buddy->name); | |
939 g_free(buddy->alias); | |
940 g_free(buddy); | |
6755 | 941 |
942 if(!cnode->child) | |
943 gaim_blist_remove_contact((GaimContact*)cnode); | |
5228 | 944 } |
945 | |
6695 | 946 void gaim_blist_remove_chat (GaimBlistChat *chat) |
5234 | 947 { |
948 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
949 | |
950 GaimBlistNode *gnode, *node = (GaimBlistNode*)chat; | |
6695 | 951 GaimGroup *group; |
5234 | 952 |
953 gnode = node->parent; | |
6695 | 954 group = (GaimGroup *)gnode; |
5234 | 955 |
956 if(gnode->child == node) | |
957 gnode->child = node->next; | |
958 if (node->prev) | |
959 node->prev->next = node->next; | |
960 if (node->next) | |
961 node->next->prev = node->prev; | |
5277 | 962 group->totalsize--; |
5855 | 963 if (gaim_account_is_connected(chat->account)) { |
5277 | 964 group->currentsize--; |
5394 | 965 group->online--; |
966 } | |
5234 | 967 |
968 ops->remove(gaimbuddylist, node); | |
969 g_hash_table_destroy(chat->components); | |
970 g_free(chat->alias); | |
971 g_free(chat); | |
972 } | |
973 | |
6695 | 974 void gaim_blist_remove_group (GaimGroup *group) |
5228 | 975 { |
976 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
977 GaimBlistNode *node = (GaimBlistNode*)group; | |
978 | |
979 if(node->child) { | |
980 char *buf; | |
981 int count = 0; | |
982 GaimBlistNode *child = node->child; | |
983 | |
984 while(child) { | |
985 count++; | |
986 child = child->next; | |
987 } | |
988 | |
6308 | 989 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed " |
990 "because its account was not logged in." | |
991 " This buddy and the group were not " | |
992 "removed.\n", | |
993 "%d buddies from group %s were not " | |
994 "removed because their accounts were " | |
6336 | 995 "not logged in. These buddies and " |
996 "the group were not removed.\n", count), | |
6308 | 997 count, group->name); |
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
998 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); |
5228 | 999 g_free(buf); |
1000 return; | |
1001 } | |
1002 | |
1003 if(gaimbuddylist->root == node) | |
1004 gaimbuddylist->root = node->next; | |
1005 if (node->prev) | |
1006 node->prev->next = node->next; | |
1007 if (node->next) | |
1008 node->next->prev = node->prev; | |
1009 | |
1010 ops->remove(gaimbuddylist, node); | |
1011 g_free(group->name); | |
1012 g_free(group); | |
1013 } | |
1014 | |
6695 | 1015 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact) { |
1016 GaimBuddy *top = NULL; | |
1017 GaimBlistNode *bnode; | |
1018 | |
1019 for(bnode = ((GaimBlistNode*)contact)->child; bnode; bnode = bnode->next) { | |
1020 GaimBuddy *buddy; | |
1021 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
1022 continue; | |
1023 buddy = (GaimBuddy*)bnode; | |
1024 if(!top) { | |
1025 top = buddy; | |
1026 } else if(GAIM_BUDDY_IS_ONLINE(buddy)) { | |
1027 if(!GAIM_BUDDY_IS_ONLINE(top)) { | |
1028 top = buddy; | |
1029 } else if(!(buddy->uc & UC_UNAVAILABLE) && !buddy->idle && | |
1030 (top->uc & UC_UNAVAILABLE || top->idle)) { | |
1031 top = buddy; | |
1032 } else if(!buddy->idle && top->idle) { | |
1033 top = buddy; | |
1034 } else if(top->uc & UC_UNAVAILABLE && top->idle && | |
1035 (!(buddy->uc & UC_UNAVAILABLE) || !buddy->idle)) { | |
1036 top = buddy; | |
1037 } | |
1038 } | |
1039 } | |
1040 | |
1041 return top; | |
1042 } | |
1043 | |
1044 const char *gaim_get_buddy_alias_only(GaimBuddy *b) { | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1045 if(!b) |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1046 return NULL; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1047 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1048 if(b->alias && b->alias[0]) { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1049 return b->alias; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1050 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1051 else if (b->server_alias != NULL && |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1052 gaim_prefs_get_bool("/core/buddies/use_server_alias")) { |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1053 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1054 return b->server_alias; |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1055 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1056 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1057 return NULL; |
5228 | 1058 } |
1059 | |
6695 | 1060 const char * gaim_get_buddy_alias (GaimBuddy *buddy) |
5228 | 1061 { |
6755 | 1062 GaimContact *contact; |
1063 const char *ret; | |
1064 | |
1065 if(!buddy) | |
1066 return _("Unknown"); | |
5228 | 1067 |
6755 | 1068 contact = (GaimContact*)((GaimBlistNode*)buddy)->parent; |
6036 | 1069 |
6755 | 1070 if(contact && contact->alias) |
1071 return contact->alias; | |
1072 | |
1073 ret= gaim_get_buddy_alias_only(buddy); | |
1074 | |
1075 return ret ? ret : buddy->name; | |
5228 | 1076 } |
1077 | |
6744 | 1078 const char *gaim_blist_chat_get_name(GaimBlistChat *chat) |
1079 { | |
1080 if(chat->alias && *chat->alias) { | |
1081 return chat->alias; | |
1082 } else { | |
1083 struct proto_chat_entry *pce; | |
1084 GList *parts, *tmp; | |
1085 char *ret; | |
1086 | |
1087 parts = GAIM_PLUGIN_PROTOCOL_INFO(chat->account->gc->prpl)->chat_info(chat->account->gc); | |
1088 pce = parts->data; | |
1089 ret = g_hash_table_lookup(chat->components, pce->identifier); | |
1090 for(tmp = parts; tmp; tmp = tmp->next) | |
1091 g_free(tmp->data); | |
1092 g_list_free(parts); | |
1093 | |
1094 return ret; | |
1095 } | |
1096 } | |
1097 | |
6695 | 1098 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name) |
5228 | 1099 { |
6695 | 1100 GaimBuddy *buddy; |
5247 | 1101 struct _gaim_hbuddy hb; |
5758 | 1102 GaimBlistNode *group; |
5228 | 1103 |
1104 if (!gaimbuddylist) | |
1105 return NULL; | |
6245 | 1106 |
1107 if (!name) | |
5985
60d9cbfb6bf8
[gaim-migrate @ 6433]
Christian Hammond <chipx86@chipx86.com>
parents:
5947
diff
changeset
|
1108 return NULL; |
5228 | 1109 |
6245 | 1110 hb.name = normalize(name); |
1111 hb.account = account; | |
5247 | 1112 |
6245 | 1113 for(group = gaimbuddylist->root; group; group = group->next) { |
5758 | 1114 hb.group = group; |
5776 | 1115 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) |
5758 | 1116 return buddy; |
1117 } | |
6245 | 1118 |
5758 | 1119 return NULL; |
5228 | 1120 } |
1121 | |
6245 | 1122 GSList *gaim_find_buddies(GaimAccount *account, const char *name) |
1123 { | |
1124 struct buddy *buddy; | |
1125 struct _gaim_hbuddy hb; | |
1126 GaimBlistNode *group; | |
1127 GSList *ret = NULL; | |
1128 | |
1129 if (!gaimbuddylist) | |
1130 return NULL; | |
1131 | |
1132 if (!name) | |
1133 return NULL; | |
1134 | |
1135 hb.name = normalize(name); | |
1136 hb.account = account; | |
1137 | |
1138 for(group = gaimbuddylist->root; group; group = group->next) { | |
1139 hb.group = group; | |
1140 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) | |
1141 ret = g_slist_append(ret, buddy); | |
1142 } | |
1143 | |
1144 return ret; | |
1145 } | |
1146 | |
6695 | 1147 GaimGroup *gaim_find_group(const char *name) |
5228 | 1148 { |
1149 GaimBlistNode *node; | |
1150 if (!gaimbuddylist) | |
1151 return NULL; | |
1152 node = gaimbuddylist->root; | |
1153 while(node) { | |
6695 | 1154 if (!strcmp(((GaimGroup *)node)->name, name)) |
1155 return (GaimGroup *)node; | |
5228 | 1156 node = node->next; |
1157 } | |
1158 return NULL; | |
1159 } | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1160 |
6695 | 1161 GaimBlistChat * |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1162 gaim_blist_find_chat(GaimAccount *account, const char *name) |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1163 { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1164 char *chat_name; |
6695 | 1165 GaimBlistChat *chat; |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1166 GaimPlugin *prpl; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1167 GaimPluginProtocolInfo *prpl_info = NULL; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1168 struct proto_chat_entry *pce; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1169 GaimBlistNode *node, *group; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1170 GList *parts; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1171 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1172 g_return_val_if_fail(gaim_get_blist() != NULL, NULL); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1173 g_return_val_if_fail(name != NULL, NULL); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1174 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1175 for (group = gaimbuddylist->root; group != NULL; group = group->next) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1176 for (node = group->child; node != NULL; node = node->next) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1177 if (GAIM_BLIST_NODE_IS_CHAT(node)) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1178 |
6695 | 1179 chat = (GaimBlistChat*)node; |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1180 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1181 prpl = gaim_find_prpl(gaim_account_get_protocol(chat->account)); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1182 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1183 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1184 parts = prpl_info->chat_info( |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1185 gaim_account_get_connection(chat->account)); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1186 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1187 pce = parts->data; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1188 chat_name = g_hash_table_lookup(chat->components, |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1189 pce->identifier); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1190 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1191 if (chat->account == account && |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1192 name != NULL && !strcmp(chat_name, name)) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1193 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1194 return chat; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1195 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1196 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1197 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1198 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1199 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1200 return NULL; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1201 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1202 |
6695 | 1203 GaimGroup * |
1204 gaim_blist_chat_get_group(GaimBlistChat *chat) | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1205 { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1206 g_return_val_if_fail(chat != NULL, NULL); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1207 |
6695 | 1208 return (GaimGroup *)(((GaimBlistNode *)chat)->parent); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1209 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1210 |
6695 | 1211 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy) |
5228 | 1212 { |
1213 if (!buddy) | |
1214 return NULL; | |
6706
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1215 |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1216 if (((GaimBlistNode *)buddy)->parent == NULL) |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1217 return NULL; |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1218 |
6695 | 1219 return (GaimGroup *)(((GaimBlistNode*)buddy)->parent->parent); |
5228 | 1220 } |
1221 | |
6695 | 1222 GSList *gaim_group_get_accounts(GaimGroup *g) |
5228 | 1223 { |
1224 GSList *l = NULL; | |
6695 | 1225 GaimBlistNode *gnode, *cnode, *bnode; |
1226 | |
1227 gnode = (GaimBlistNode *)g; | |
5228 | 1228 |
6695 | 1229 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
1230 if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
1231 if(!g_slist_find(l, ((GaimBlistChat *)cnode)->account)) | |
1232 l = g_slist_append(l, ((GaimBlistChat *)cnode)->account); | |
1233 } else if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
1234 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
1235 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
1236 if(!g_slist_find(l, ((GaimBuddy *)bnode)->account)) | |
1237 l = g_slist_append(l, ((GaimBuddy *)bnode)->account); | |
1238 } | |
1239 } | |
1240 } | |
5228 | 1241 } |
6695 | 1242 |
5228 | 1243 return l; |
1244 } | |
1245 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1246 void gaim_blist_add_account(GaimAccount *account) |
5234 | 1247 { |
1248 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
6695 | 1249 GaimBlistNode *gnode, *cnode, *bnode; |
5234 | 1250 |
1251 if(!gaimbuddylist) | |
1252 return; | |
1253 | |
6695 | 1254 if(!ops) |
1255 return; | |
1256 | |
1257 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
1258 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5234 | 1259 continue; |
6695 | 1260 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
1261 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
1262 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
1263 if(GAIM_BLIST_NODE_IS_BUDDY(bnode) && | |
1264 ((GaimBuddy*)bnode)->account == account) { | |
1265 ((GaimContact*)cnode)->currentsize++; | |
1266 if(((GaimContact*)cnode)->currentsize == 1) | |
1267 ((GaimGroup*)gnode)->currentsize++; | |
1268 if(GAIM_BUDDY_IS_ONLINE((GaimBuddy*)bnode)) { | |
1269 ((GaimContact*)cnode)->online++; | |
1270 if(((GaimContact*)cnode)->online == 1) | |
1271 ((GaimGroup*)gnode)->online++; | |
1272 } | |
1273 ops->update(gaimbuddylist, bnode); | |
1274 } | |
1275 } | |
1276 ops->update(gaimbuddylist, cnode); | |
1277 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode) && | |
1278 ((GaimBlistChat*)cnode)->account == account) { | |
1279 ((GaimGroup *)gnode)->online++; | |
1280 ((GaimGroup *)gnode)->currentsize++; | |
1281 ops->update(gaimbuddylist, cnode); | |
5234 | 1282 } |
1283 } | |
6695 | 1284 ops->update(gaimbuddylist, gnode); |
5234 | 1285 } |
1286 } | |
1287 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1288 void gaim_blist_remove_account(GaimAccount *account) |
5228 | 1289 { |
1290 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
6695 | 1291 GaimBlistNode *gnode, *cnode, *bnode; |
5234 | 1292 |
5228 | 1293 if (!gaimbuddylist) |
1294 return; | |
5234 | 1295 |
6695 | 1296 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
1297 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5234 | 1298 continue; |
6695 | 1299 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
1300 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
1301 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
1302 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
1303 continue; | |
1304 if(account == ((GaimBuddy *)bnode)->account) { | |
1305 if(((GaimBuddy*)bnode)->present == GAIM_BUDDY_ONLINE || | |
1306 ((GaimBuddy*)bnode)->present == GAIM_BUDDY_SIGNING_ON) { | |
1307 ((GaimContact*)cnode)->online--; | |
1308 if(((GaimContact*)cnode)->online == 0) | |
1309 ((GaimGroup*)gnode)->online--; | |
1310 } | |
1311 ((GaimContact*)cnode)->currentsize--; | |
1312 if(((GaimContact*)cnode)->currentsize == 0) | |
1313 ((GaimGroup*)gnode)->currentsize--; | |
1314 | |
1315 ((GaimBuddy*)bnode)->present = GAIM_BUDDY_OFFLINE; | |
1316 | |
1317 if(ops) | |
1318 ops->remove(gaimbuddylist, bnode); | |
1319 } | |
5234 | 1320 } |
6695 | 1321 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode) && |
1322 ((GaimBlistChat*)cnode)->account == account) { | |
1323 ((GaimGroup*)gnode)->currentsize--; | |
1324 ((GaimGroup*)gnode)->online--; | |
1325 if(ops) | |
1326 ops->remove(gaimbuddylist, cnode); | |
5228 | 1327 } |
1328 } | |
1329 } | |
1330 } | |
1331 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1332 void parse_toc_buddy_list(GaimAccount *account, char *config) |
5228 | 1333 { |
1334 char *c; | |
1335 char current[256]; | |
1336 GList *bud = NULL; | |
1337 | |
1338 | |
1339 if (config != NULL) { | |
1340 | |
1341 /* skip "CONFIG:" (if it exists) */ | |
1342 c = strncmp(config + 6 /* sizeof(struct sflap_hdr) */ , "CONFIG:", strlen("CONFIG:")) ? | |
1343 strtok(config, "\n") : | |
1344 strtok(config + 6 /* sizeof(struct sflap_hdr) */ + strlen("CONFIG:"), "\n"); | |
1345 do { | |
1346 if (c == NULL) | |
1347 break; | |
1348 if (*c == 'g') { | |
1349 char *utf8 = NULL; | |
1350 utf8 = gaim_try_conv_to_utf8(c + 2); | |
1351 if (utf8 == NULL) { | |
1352 g_strlcpy(current, _("Invalid Groupname"), sizeof(current)); | |
1353 } else { | |
1354 g_strlcpy(current, utf8, sizeof(current)); | |
1355 g_free(utf8); | |
1356 } | |
1357 if (!gaim_find_group(current)) { | |
6695 | 1358 GaimGroup *g = gaim_group_new(current); |
5634 | 1359 gaim_blist_add_group(g, |
1360 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5228 | 1361 } |
1362 } else if (*c == 'b') { /*&& !gaim_find_buddy(user, c + 2)) {*/ | |
1363 char nm[80], sw[388], *a, *utf8 = NULL; | |
1364 | |
1365 if ((a = strchr(c + 2, ':')) != NULL) { | |
1366 *a++ = '\0'; /* nul the : */ | |
1367 } | |
1368 | |
1369 g_strlcpy(nm, c + 2, sizeof(nm)); | |
1370 if (a) { | |
1371 utf8 = gaim_try_conv_to_utf8(a); | |
1372 if (utf8 == NULL) { | |
1373 gaim_debug(GAIM_DEBUG_ERROR, "toc blist", | |
1374 "Failed to convert alias for " | |
1375 "'%s' to UTF-8\n", nm); | |
1376 } | |
1377 } | |
1378 if (utf8 == NULL) { | |
1379 sw[0] = '\0'; | |
1380 } else { | |
1381 /* This can leave a partial sequence at the end, | |
1382 * but who cares? */ | |
1383 g_strlcpy(sw, utf8, sizeof(sw)); | |
1384 g_free(utf8); | |
1385 } | |
1386 | |
1387 if (!gaim_find_buddy(account, nm)) { | |
6695 | 1388 GaimBuddy *b = gaim_buddy_new(account, nm, sw); |
1389 GaimGroup *g = gaim_find_group(current); | |
1390 gaim_blist_add_buddy(b, NULL, g, | |
5634 | 1391 gaim_blist_get_last_child((GaimBlistNode*)g)); |
5228 | 1392 bud = g_list_append(bud, g_strdup(nm)); |
1393 } | |
1394 } else if (*c == 'p') { | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1395 gaim_privacy_permit_add(account, c + 2, TRUE); |
5228 | 1396 } else if (*c == 'd') { |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1397 gaim_privacy_deny_add(account, c + 2, TRUE); |
5228 | 1398 } else if (!strncmp("toc", c, 3)) { |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1399 sscanf(c + strlen(c) - 1, "%d", &account->perm_deny); |
5228 | 1400 gaim_debug(GAIM_DEBUG_MISC, "toc blist", |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1401 "permdeny: %d\n", account->perm_deny); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1402 if (account->perm_deny == 0) |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1403 account->perm_deny = 1; |
5228 | 1404 } else if (*c == 'm') { |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1405 sscanf(c + 2, "%d", &account->perm_deny); |
5228 | 1406 gaim_debug(GAIM_DEBUG_MISC, "toc blist", |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1407 "permdeny: %d\n", account->perm_deny); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1408 if (account->perm_deny == 0) |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1409 account->perm_deny = 1; |
5228 | 1410 } |
1411 } while ((c = strtok(NULL, "\n"))); | |
1412 | |
1413 if(account->gc) { | |
1414 if(bud) { | |
1415 GList *node = bud; | |
1416 serv_add_buddies(account->gc, bud); | |
1417 while(node) { | |
1418 g_free(node->data); | |
1419 node = node->next; | |
1420 } | |
1421 } | |
1422 serv_set_permit_deny(account->gc); | |
1423 } | |
1424 g_list_free(bud); | |
1425 } | |
1426 } | |
1427 | |
1428 #if 0 | |
1429 /* translate an AIM 3 buddylist (*.lst) to a Gaim buddylist */ | |
1430 static GString *translate_lst(FILE *src_fp) | |
1431 { | |
1432 char line[BUF_LEN], *line2; | |
1433 char *name; | |
1434 int i; | |
1435 | |
1436 GString *dest = g_string_new("m 1\n"); | |
1437 | |
1438 while (fgets(line, BUF_LEN, src_fp)) { | |
1439 line2 = g_strchug(line); | |
1440 if (strstr(line2, "group") == line2) { | |
1441 name = strpbrk(line2, " \t\n\r\f") + 1; | |
1442 dest = g_string_append(dest, "g "); | |
1443 for (i = 0; i < strcspn(name, "\n\r"); i++) | |
1444 if (name[i] != '\"') | |
1445 dest = g_string_append_c(dest, name[i]); | |
1446 dest = g_string_append_c(dest, '\n'); | |
1447 } | |
1448 if (strstr(line2, "buddy") == line2) { | |
1449 name = strpbrk(line2, " \t\n\r\f") + 1; | |
1450 dest = g_string_append(dest, "b "); | |
1451 for (i = 0; i < strcspn(name, "\n\r"); i++) | |
1452 if (name[i] != '\"') | |
1453 dest = g_string_append_c(dest, name[i]); | |
1454 dest = g_string_append_c(dest, '\n'); | |
1455 } | |
1456 } | |
1457 | |
1458 return dest; | |
1459 } | |
1460 | |
1461 | |
1462 /* translate an AIM 4 buddylist (*.blt) to Gaim format */ | |
1463 static GString *translate_blt(FILE *src_fp) | |
1464 { | |
1465 int i; | |
1466 char line[BUF_LEN]; | |
1467 char *buddy; | |
1468 | |
1469 GString *dest = g_string_new("m 1\n"); | |
1470 | |
1471 while (strstr(fgets(line, BUF_LEN, src_fp), "Buddy") == NULL); | |
1472 while (strstr(fgets(line, BUF_LEN, src_fp), "list") == NULL); | |
1473 | |
1474 while (1) { | |
1475 fgets(line, BUF_LEN, src_fp); g_strchomp(line); | |
1476 if (strchr(line, '}') != NULL) | |
1477 break; | |
1478 | |
1479 if (strchr(line, '{') != NULL) { | |
1480 /* Syntax starting with "<group> {" */ | |
1481 | |
1482 dest = g_string_append(dest, "g "); | |
1483 buddy = g_strchug(strtok(line, "{")); | |
1484 for (i = 0; i < strlen(buddy); i++) | |
1485 if (buddy[i] != '\"') | |
1486 dest = g_string_append_c(dest, buddy[i]); | |
1487 dest = g_string_append_c(dest, '\n'); | |
1488 while (strchr(fgets(line, BUF_LEN, src_fp), '}') == NULL) { | |
1489 gboolean pounce = FALSE; | |
1490 char *e; | |
1491 g_strchomp(line); | |
1492 buddy = g_strchug(line); | |
1493 gaim_debug(GAIM_DEBUG_MISC, "AIM 4 blt import", | |
1494 "buddy: \"%s\"\n", buddy); | |
1495 dest = g_string_append(dest, "b "); | |
1496 if (strchr(buddy, '{') != NULL) { | |
1497 /* buddy pounce, etc */ | |
1498 char *pos = strchr(buddy, '{') - 1; | |
1499 *pos = 0; | |
1500 pounce = TRUE; | |
1501 } | |
1502 if ((e = strchr(buddy, '\"')) != NULL) { | |
1503 *e = '\0'; | |
1504 buddy++; | |
1505 } | |
1506 dest = g_string_append(dest, buddy); | |
1507 dest = g_string_append_c(dest, '\n'); | |
1508 if (pounce) | |
1509 do | |
1510 fgets(line, BUF_LEN, src_fp); | |
1511 while (!strchr(line, '}')); | |
1512 } | |
1513 } else { | |
1514 | |
1515 /* Syntax "group buddy buddy ..." */ | |
1516 buddy = g_strchug(strtok(line, " \n")); | |
1517 dest = g_string_append(dest, "g "); | |
1518 if (strchr(buddy, '\"') != NULL) { | |
1519 dest = g_string_append(dest, &buddy[1]); | |
1520 dest = g_string_append_c(dest, ' '); | |
1521 buddy = g_strchug(strtok(NULL, " \n")); | |
1522 while (strchr(buddy, '\"') == NULL) { | |
1523 dest = g_string_append(dest, buddy); | |
1524 dest = g_string_append_c(dest, ' '); | |
1525 buddy = g_strchug(strtok(NULL, " \n")); | |
1526 } | |
1527 buddy[strlen(buddy) - 1] = '\0'; | |
1528 dest = g_string_append(dest, buddy); | |
1529 } else { | |
1530 dest = g_string_append(dest, buddy); | |
1531 } | |
1532 dest = g_string_append_c(dest, '\n'); | |
1533 while ((buddy = g_strchug(strtok(NULL, " \n"))) != NULL) { | |
1534 dest = g_string_append(dest, "b "); | |
1535 if (strchr(buddy, '\"') != NULL) { | |
1536 dest = g_string_append(dest, &buddy[1]); | |
1537 dest = g_string_append_c(dest, ' '); | |
1538 buddy = g_strchug(strtok(NULL, " \n")); | |
1539 while (strchr(buddy, '\"') == NULL) { | |
1540 dest = g_string_append(dest, buddy); | |
1541 dest = g_string_append_c(dest, ' '); | |
1542 buddy = g_strchug(strtok(NULL, " \n")); | |
1543 } | |
1544 buddy[strlen(buddy) - 1] = '\0'; | |
1545 dest = g_string_append(dest, buddy); | |
1546 } else { | |
1547 dest = g_string_append(dest, buddy); | |
1548 } | |
1549 dest = g_string_append_c(dest, '\n'); | |
1550 } | |
1551 } | |
1552 } | |
1553 | |
1554 return dest; | |
1555 } | |
1556 | |
1557 static GString *translate_gnomeicu(FILE *src_fp) | |
1558 { | |
1559 char line[BUF_LEN]; | |
1560 GString *dest = g_string_new("m 1\ng Buddies\n"); | |
1561 | |
1562 while (strstr(fgets(line, BUF_LEN, src_fp), "NewContacts") == NULL); | |
1563 | |
1564 while (fgets(line, BUF_LEN, src_fp)) { | |
1565 char *eq; | |
1566 g_strchomp(line); | |
1567 if (line[0] == '\n' || line[0] == '[') | |
1568 break; | |
1569 eq = strchr(line, '='); | |
1570 if (!eq) | |
1571 break; | |
1572 *eq = ':'; | |
1573 eq = strchr(eq, ','); | |
1574 if (eq) | |
1575 *eq = '\0'; | |
1576 dest = g_string_append(dest, "b "); | |
1577 dest = g_string_append(dest, line); | |
1578 dest = g_string_append_c(dest, '\n'); | |
1579 } | |
1580 | |
1581 return dest; | |
1582 } | |
1583 #endif | |
1584 | |
1585 static gchar *get_screenname_filename(const char *name) | |
1586 { | |
1587 gchar **split; | |
1588 gchar *good; | |
1589 gchar *ret; | |
1590 | |
1591 split = g_strsplit(name, G_DIR_SEPARATOR_S, -1); | |
1592 good = g_strjoinv(NULL, split); | |
1593 g_strfreev(split); | |
1594 | |
1595 ret = g_utf8_strup(good, -1); | |
1596 | |
1597 g_free(good); | |
1598 | |
1599 return ret; | |
1600 } | |
1601 | |
1602 static gboolean gaim_blist_read(const char *filename); | |
1603 | |
1604 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1605 static void do_import(GaimAccount *account, const char *filename) |
5228 | 1606 { |
1607 GString *buf = NULL; | |
1608 char first[64]; | |
1609 char path[PATHSIZE]; | |
1610 int len; | |
1611 FILE *f; | |
1612 struct stat st; | |
1613 | |
1614 if (filename) { | |
1615 g_snprintf(path, sizeof(path), "%s", filename); | |
1616 } else { | |
1617 char *g_screenname = get_screenname_filename(account->username); | |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1618 const char *username; |
5228 | 1619 char *file = gaim_user_dir(); |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1620 GaimProtocol prpl_num; |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1621 int protocol; |
6695 | 1622 |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1623 prpl_num = gaim_account_get_protocol(account); |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1624 |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1625 protocol = prpl_num; |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1626 |
6450
e7b87c8e8c0a
[gaim-migrate @ 6959]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
1627 /* TODO Somehow move this checking into prpls */ |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1628 if (prpl_num == GAIM_PROTO_OSCAR) { |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1629 if ((username = gaim_account_get_username(account)) != NULL) { |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1630 protocol = (isalpha(*username) |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1631 ? GAIM_PROTO_TOC : GAIM_PROTO_ICQ); |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1632 } |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1633 } |
5228 | 1634 |
1635 if (file != (char *)NULL) { | |
5435 | 1636 snprintf(path, PATHSIZE, "%s" G_DIR_SEPARATOR_S "%s.%d.blist", file, g_screenname, protocol); |
5228 | 1637 g_free(g_screenname); |
1638 } else { | |
1639 g_free(g_screenname); | |
1640 return; | |
1641 } | |
1642 } | |
1643 | |
1644 if (stat(path, &st)) { | |
1645 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Unable to stat %s.\n", | |
1646 path); | |
1647 return; | |
1648 } | |
1649 | |
1650 if (!(f = fopen(path, "r"))) { | |
1651 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Unable to open %s.\n", | |
1652 path); | |
1653 return; | |
1654 } | |
1655 | |
1656 fgets(first, 64, f); | |
1657 | |
1658 if ((first[0] == '\n') || (first[0] == '\r' && first[1] == '\n')) | |
1659 fgets(first, 64, f); | |
1660 | |
1661 #if 0 | |
1662 if (!g_strncasecmp(first, "<xml", strlen("<xml"))) { | |
1663 /* new gaim XML buddy list */ | |
1664 gaim_blist_read(path); | |
1665 | |
1666 /* We really don't need to bother doing stuf like translating AIM 3 buddy lists anymore */ | |
1667 | |
1668 } else if (!g_strncasecmp(first, "Config {", strlen("Config {"))) { | |
1669 /* AIM 4 buddy list */ | |
1670 gaim_debug(GAIM_DEBUG_MISC, "blist import", "aim 4\n"); | |
1671 rewind(f); | |
1672 buf = translate_blt(f); | |
1673 } else if (strstr(first, "group") != NULL) { | |
1674 /* AIM 3 buddy list */ | |
1675 gaim_debug(GAIM_DEBUG_MISC, "blist import", "aim 3\n"); | |
1676 rewind(f); | |
1677 buf = translate_lst(f); | |
1678 } else if (!g_strncasecmp(first, "[User]", strlen("[User]"))) { | |
1679 /* GnomeICU (hopefully) */ | |
1680 gaim_debug(GAIM_DEBUG_MISC, "blist import", "gnomeicu\n"); | |
1681 rewind(f); | |
1682 buf = translate_gnomeicu(f); | |
1683 | |
1684 } else | |
1685 #endif | |
1686 if (first[0] == 'm') { | |
1687 /* Gaim buddy list - no translation */ | |
1688 char buf2[BUF_LONG * 2]; | |
1689 buf = g_string_new(""); | |
1690 rewind(f); | |
1691 while (1) { | |
1692 len = fread(buf2, 1, BUF_LONG * 2 - 1, f); | |
1693 if (len <= 0) | |
1694 break; | |
1695 buf2[len] = '\0'; | |
1696 buf = g_string_append(buf, buf2); | |
1697 if (len != BUF_LONG * 2 - 1) | |
1698 break; | |
1699 } | |
1700 } | |
1701 | |
1702 fclose(f); | |
1703 | |
1704 if (buf) { | |
1705 buf = g_string_prepend(buf, "toc_set_config {"); | |
1706 buf = g_string_append(buf, "}\n"); | |
1707 parse_toc_buddy_list(account, buf->str); | |
1708 g_string_free(buf, TRUE); | |
1709 } | |
1710 } | |
1711 | |
6695 | 1712 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account) { |
1713 GaimBlistNode *cnode, *bnode; | |
1714 for(cnode = ((GaimBlistNode *)g)->child; cnode; cnode = cnode->next) { | |
1715 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
1716 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
1717 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
1718 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
1719 if((!account && gaim_account_is_connected(buddy->account)) | |
1720 || buddy->account == account) | |
1721 return TRUE; | |
1722 } | |
1723 } | |
1724 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
1725 GaimBlistChat *chat = (GaimBlistChat *)cnode; | |
1726 if((!account && gaim_account_is_connected(chat->account)) | |
1727 || chat->account == account) | |
1728 return TRUE; | |
1729 } | |
5228 | 1730 } |
1731 return FALSE; | |
1732 } | |
1733 | |
1734 static gboolean blist_safe_to_write = FALSE; | |
1735 | |
6695 | 1736 GaimGroup *blist_parser_group = NULL; |
1737 GaimContact *blist_parser_contact = NULL; | |
5228 | 1738 static char *blist_parser_group_name = NULL; |
1739 static char *blist_parser_account_name = NULL; | |
1740 static int blist_parser_account_protocol = 0; | |
5234 | 1741 static char *blist_parser_chat_alias = NULL; |
1742 static char *blist_parser_component_name = NULL; | |
1743 static char *blist_parser_component_value = NULL; | |
5228 | 1744 static char *blist_parser_buddy_name = NULL; |
1745 static char *blist_parser_buddy_alias = NULL; | |
1746 static char *blist_parser_setting_name = NULL; | |
1747 static char *blist_parser_setting_value = NULL; | |
1748 static GHashTable *blist_parser_buddy_settings = NULL; | |
5906 | 1749 static GHashTable *blist_parser_chat_settings = NULL; |
5228 | 1750 static GHashTable *blist_parser_group_settings = NULL; |
5234 | 1751 static GHashTable *blist_parser_chat_components = NULL; |
5228 | 1752 static int blist_parser_privacy_mode = 0; |
1753 static GList *tag_stack = NULL; | |
1754 enum { | |
1755 BLIST_TAG_GAIM, | |
1756 BLIST_TAG_BLIST, | |
1757 BLIST_TAG_GROUP, | |
5234 | 1758 BLIST_TAG_CHAT, |
1759 BLIST_TAG_COMPONENT, | |
6695 | 1760 BLIST_TAG_CONTACT, |
5228 | 1761 BLIST_TAG_BUDDY, |
1762 BLIST_TAG_NAME, | |
1763 BLIST_TAG_ALIAS, | |
1764 BLIST_TAG_SETTING, | |
1765 BLIST_TAG_PRIVACY, | |
1766 BLIST_TAG_ACCOUNT, | |
1767 BLIST_TAG_PERMIT, | |
1768 BLIST_TAG_BLOCK, | |
1769 BLIST_TAG_IGNORE | |
1770 }; | |
1771 static gboolean blist_parser_error_occurred = FALSE; | |
1772 | |
1773 static void blist_start_element_handler (GMarkupParseContext *context, | |
1774 const gchar *element_name, | |
1775 const gchar **attribute_names, | |
1776 const gchar **attribute_values, | |
1777 gpointer user_data, | |
1778 GError **error) { | |
1779 int i; | |
1780 | |
1781 if(!strcmp(element_name, "gaim")) { | |
1782 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_GAIM)); | |
1783 } else if(!strcmp(element_name, "blist")) { | |
1784 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BLIST)); | |
1785 } else if(!strcmp(element_name, "group")) { | |
1786 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_GROUP)); | |
1787 for(i=0; attribute_names[i]; i++) { | |
1788 if(!strcmp(attribute_names[i], "name")) { | |
1789 g_free(blist_parser_group_name); | |
1790 blist_parser_group_name = g_strdup(attribute_values[i]); | |
1791 } | |
1792 } | |
1793 if(blist_parser_group_name) { | |
6695 | 1794 blist_parser_group = gaim_group_new(blist_parser_group_name); |
1795 gaim_blist_add_group(blist_parser_group, | |
5634 | 1796 gaim_blist_get_last_sibling(gaimbuddylist->root)); |
5228 | 1797 } |
6695 | 1798 } else if(!strcmp(element_name, "contact")) { |
6755 | 1799 char *alias = NULL; |
6695 | 1800 tag_stack = g_list_prepend(tag_stack, |
1801 GINT_TO_POINTER(BLIST_TAG_CONTACT)); | |
1802 | |
6755 | 1803 for(i=0; attribute_names[i]; i++) { |
1804 if(!strcmp(attribute_names[i], "alias")) { | |
1805 g_free(alias); | |
1806 alias = g_strdup(attribute_values[i]); | |
1807 } | |
1808 } | |
1809 | |
6695 | 1810 blist_parser_contact = gaim_contact_new(); |
1811 gaim_blist_add_contact(blist_parser_contact, blist_parser_group, | |
1812 gaim_blist_get_last_sibling(((GaimBlistNode*)blist_parser_group)->child)); | |
6755 | 1813 |
1814 if(alias) { | |
1815 gaim_contact_set_alias(blist_parser_contact, alias); | |
1816 g_free(alias); | |
1817 } | |
5234 | 1818 } else if(!strcmp(element_name, "chat")) { |
1819 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_CHAT)); | |
1820 for(i=0; attribute_names[i]; i++) { | |
1821 if(!strcmp(attribute_names[i], "account")) { | |
1822 g_free(blist_parser_account_name); | |
1823 blist_parser_account_name = g_strdup(attribute_values[i]); | |
1824 } else if(!strcmp(attribute_names[i], "protocol")) { | |
1825 blist_parser_account_protocol = atoi(attribute_values[i]); | |
1826 } | |
1827 } | |
5228 | 1828 } else if(!strcmp(element_name, "buddy")) { |
1829 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BUDDY)); | |
1830 for(i=0; attribute_names[i]; i++) { | |
1831 if(!strcmp(attribute_names[i], "account")) { | |
1832 g_free(blist_parser_account_name); | |
1833 blist_parser_account_name = g_strdup(attribute_values[i]); | |
1834 } else if(!strcmp(attribute_names[i], "protocol")) { | |
1835 blist_parser_account_protocol = atoi(attribute_values[i]); | |
1836 } | |
1837 } | |
1838 } else if(!strcmp(element_name, "name")) { | |
1839 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_NAME)); | |
1840 } else if(!strcmp(element_name, "alias")) { | |
1841 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_ALIAS)); | |
1842 } else if(!strcmp(element_name, "setting")) { | |
1843 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_SETTING)); | |
1844 for(i=0; attribute_names[i]; i++) { | |
1845 if(!strcmp(attribute_names[i], "name")) { | |
1846 g_free(blist_parser_setting_name); | |
1847 blist_parser_setting_name = g_strdup(attribute_values[i]); | |
1848 } | |
1849 } | |
5234 | 1850 } else if(!strcmp(element_name, "component")) { |
1851 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_COMPONENT)); | |
1852 for(i=0; attribute_names[i]; i++) { | |
1853 if(!strcmp(attribute_names[i], "name")) { | |
1854 g_free(blist_parser_component_name); | |
1855 blist_parser_component_name = g_strdup(attribute_values[i]); | |
1856 } | |
1857 } | |
1858 | |
5228 | 1859 } else if(!strcmp(element_name, "privacy")) { |
1860 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PRIVACY)); | |
1861 } else if(!strcmp(element_name, "account")) { | |
1862 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_ACCOUNT)); | |
1863 for(i=0; attribute_names[i]; i++) { | |
1864 if(!strcmp(attribute_names[i], "protocol")) | |
1865 blist_parser_account_protocol = atoi(attribute_values[i]); | |
1866 else if(!strcmp(attribute_names[i], "mode")) | |
1867 blist_parser_privacy_mode = atoi(attribute_values[i]); | |
1868 else if(!strcmp(attribute_names[i], "name")) { | |
1869 g_free(blist_parser_account_name); | |
1870 blist_parser_account_name = g_strdup(attribute_values[i]); | |
1871 } | |
1872 } | |
1873 } else if(!strcmp(element_name, "permit")) { | |
1874 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PERMIT)); | |
1875 } else if(!strcmp(element_name, "block")) { | |
1876 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BLOCK)); | |
1877 } else if(!strcmp(element_name, "ignore")) { | |
1878 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_IGNORE)); | |
1879 } | |
1880 } | |
1881 | |
1882 static void blist_end_element_handler(GMarkupParseContext *context, | |
1883 const gchar *element_name, gpointer user_data, GError **error) { | |
1884 if(!strcmp(element_name, "gaim")) { | |
1885 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1886 } else if(!strcmp(element_name, "blist")) { | |
1887 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1888 } else if(!strcmp(element_name, "group")) { | |
1889 if(blist_parser_group_settings) { | |
6695 | 1890 GaimGroup *g = gaim_find_group(blist_parser_group_name); |
5228 | 1891 g_hash_table_destroy(g->settings); |
1892 g->settings = blist_parser_group_settings; | |
1893 } | |
1894 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1895 blist_parser_group_settings = NULL; | |
6695 | 1896 blist_parser_group = NULL; |
1897 blist_parser_group_name = NULL; | |
5234 | 1898 } else if(!strcmp(element_name, "chat")) { |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1899 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5234 | 1900 blist_parser_account_protocol); |
5237 | 1901 if(account) { |
6695 | 1902 GaimBlistChat *chat = gaim_blist_chat_new(account, |
1903 blist_parser_chat_alias, blist_parser_chat_components); | |
1904 GaimGroup *g = gaim_find_group(blist_parser_group_name); | |
5634 | 1905 gaim_blist_add_chat(chat,g, |
1906 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
5906 | 1907 if(blist_parser_chat_settings) { |
1908 g_hash_table_destroy(chat->settings); | |
1909 chat->settings = blist_parser_chat_settings; | |
1910 } | |
5234 | 1911 } |
1912 g_free(blist_parser_chat_alias); | |
1913 blist_parser_chat_alias = NULL; | |
1914 g_free(blist_parser_account_name); | |
1915 blist_parser_account_name = NULL; | |
1916 blist_parser_chat_components = NULL; | |
5906 | 1917 blist_parser_chat_settings = NULL; |
5234 | 1918 tag_stack = g_list_delete_link(tag_stack, tag_stack); |
6695 | 1919 } else if(!strcmp(element_name, "contact")) { |
1920 if(blist_parser_contact && !blist_parser_contact->node.child) | |
1921 gaim_blist_remove_contact(blist_parser_contact); | |
1922 blist_parser_contact = NULL; | |
5228 | 1923 tag_stack = g_list_delete_link(tag_stack, tag_stack); |
1924 } else if(!strcmp(element_name, "buddy")) { | |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1925 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5228 | 1926 blist_parser_account_protocol); |
1927 if(account) { | |
6695 | 1928 GaimBuddy *b = gaim_buddy_new(account, blist_parser_buddy_name, blist_parser_buddy_alias); |
1929 gaim_blist_add_buddy(b,blist_parser_contact, blist_parser_group, | |
1930 gaim_blist_get_last_child((GaimBlistNode*)blist_parser_contact)); | |
5228 | 1931 if(blist_parser_buddy_settings) { |
1932 g_hash_table_destroy(b->settings); | |
1933 b->settings = blist_parser_buddy_settings; | |
1934 } | |
1935 } | |
1936 g_free(blist_parser_buddy_name); | |
1937 blist_parser_buddy_name = NULL; | |
1938 g_free(blist_parser_buddy_alias); | |
1939 blist_parser_buddy_alias = NULL; | |
1940 g_free(blist_parser_account_name); | |
1941 blist_parser_account_name = NULL; | |
1942 blist_parser_buddy_settings = NULL; | |
1943 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1944 } else if(!strcmp(element_name, "name")) { | |
1945 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1946 } else if(!strcmp(element_name, "alias")) { | |
1947 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
5234 | 1948 } else if(!strcmp(element_name, "component")) { |
1949 if(!blist_parser_chat_components) | |
1950 blist_parser_chat_components = g_hash_table_new_full(g_str_hash, | |
1951 g_str_equal, g_free, g_free); | |
1952 if(blist_parser_component_name && blist_parser_component_value) { | |
1953 g_hash_table_replace(blist_parser_chat_components, | |
1954 g_strdup(blist_parser_component_name), | |
1955 g_strdup(blist_parser_component_value)); | |
1956 } | |
1957 g_free(blist_parser_component_name); | |
1958 g_free(blist_parser_component_value); | |
1959 blist_parser_component_name = NULL; | |
1960 blist_parser_component_value = NULL; | |
1961 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
5228 | 1962 } else if(!strcmp(element_name, "setting")) { |
1963 if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_BUDDY) { | |
1964 if(!blist_parser_buddy_settings) | |
1965 blist_parser_buddy_settings = g_hash_table_new_full(g_str_hash, | |
1966 g_str_equal, g_free, g_free); | |
1967 if(blist_parser_setting_name && blist_parser_setting_value) { | |
1968 g_hash_table_replace(blist_parser_buddy_settings, | |
1969 g_strdup(blist_parser_setting_name), | |
1970 g_strdup(blist_parser_setting_value)); | |
1971 } | |
5906 | 1972 } else if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_CHAT) { |
1973 if(!blist_parser_chat_settings) | |
1974 blist_parser_chat_settings = g_hash_table_new_full(g_str_hash, | |
1975 g_str_equal, g_free, g_free); | |
1976 if(blist_parser_setting_name && blist_parser_setting_value) { | |
6307 | 1977 g_hash_table_replace(blist_parser_chat_settings, |
5906 | 1978 g_strdup(blist_parser_setting_name), |
1979 g_strdup(blist_parser_setting_value)); | |
1980 } | |
5228 | 1981 } else if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_GROUP) { |
1982 if(!blist_parser_group_settings) | |
1983 blist_parser_group_settings = g_hash_table_new_full(g_str_hash, | |
1984 g_str_equal, g_free, g_free); | |
1985 if(blist_parser_setting_name && blist_parser_setting_value) { | |
1986 g_hash_table_replace(blist_parser_group_settings, | |
1987 g_strdup(blist_parser_setting_name), | |
1988 g_strdup(blist_parser_setting_value)); | |
1989 } | |
1990 } | |
1991 g_free(blist_parser_setting_name); | |
1992 g_free(blist_parser_setting_value); | |
1993 blist_parser_setting_name = NULL; | |
1994 blist_parser_setting_value = NULL; | |
1995 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1996 } else if(!strcmp(element_name, "privacy")) { | |
1997 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
1998 } else if(!strcmp(element_name, "account")) { | |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1999 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5228 | 2000 blist_parser_account_protocol); |
2001 if(account) { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2002 account->perm_deny = blist_parser_privacy_mode; |
5228 | 2003 } |
2004 g_free(blist_parser_account_name); | |
2005 blist_parser_account_name = NULL; | |
2006 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
2007 } else if(!strcmp(element_name, "permit")) { | |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2008 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5228 | 2009 blist_parser_account_protocol); |
2010 if(account) { | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
2011 gaim_privacy_permit_add(account, blist_parser_buddy_name, TRUE); |
5228 | 2012 } |
2013 g_free(blist_parser_buddy_name); | |
2014 blist_parser_buddy_name = NULL; | |
2015 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
2016 } else if(!strcmp(element_name, "block")) { | |
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2017 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
5228 | 2018 blist_parser_account_protocol); |
2019 if(account) { | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
2020 gaim_privacy_deny_add(account, blist_parser_buddy_name, TRUE); |
5228 | 2021 } |
2022 g_free(blist_parser_buddy_name); | |
2023 blist_parser_buddy_name = NULL; | |
2024 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
2025 } else if(!strcmp(element_name, "ignore")) { | |
2026 /* we'll apparently do something with this later */ | |
2027 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
2028 } | |
2029 } | |
2030 | |
2031 static void blist_text_handler(GMarkupParseContext *context, const gchar *text, | |
2032 gsize text_len, gpointer user_data, GError **error) { | |
2033 switch(GPOINTER_TO_INT(tag_stack->data)) { | |
2034 case BLIST_TAG_NAME: | |
2035 blist_parser_buddy_name = g_strndup(text, text_len); | |
2036 break; | |
2037 case BLIST_TAG_ALIAS: | |
5234 | 2038 if(tag_stack->next && |
2039 GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_BUDDY) | |
2040 blist_parser_buddy_alias = g_strndup(text, text_len); | |
2041 else if(tag_stack->next && | |
2042 GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_CHAT) | |
2043 blist_parser_chat_alias = g_strndup(text, text_len); | |
5228 | 2044 break; |
2045 case BLIST_TAG_PERMIT: | |
2046 case BLIST_TAG_BLOCK: | |
2047 case BLIST_TAG_IGNORE: | |
2048 blist_parser_buddy_name = g_strndup(text, text_len); | |
2049 break; | |
5234 | 2050 case BLIST_TAG_COMPONENT: |
2051 blist_parser_component_value = g_strndup(text, text_len); | |
2052 break; | |
5228 | 2053 case BLIST_TAG_SETTING: |
2054 blist_parser_setting_value = g_strndup(text, text_len); | |
2055 break; | |
2056 default: | |
2057 break; | |
2058 } | |
2059 } | |
2060 | |
2061 static void blist_error_handler(GMarkupParseContext *context, GError *error, | |
2062 gpointer user_data) { | |
2063 blist_parser_error_occurred = TRUE; | |
2064 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
2065 "Error parsing blist.xml: %s\n", error->message); | |
2066 } | |
2067 | |
2068 static GMarkupParser blist_parser = { | |
2069 blist_start_element_handler, | |
2070 blist_end_element_handler, | |
2071 blist_text_handler, | |
2072 NULL, | |
2073 blist_error_handler | |
2074 }; | |
2075 | |
2076 static gboolean gaim_blist_read(const char *filename) { | |
2077 gchar *contents = NULL; | |
2078 gsize length; | |
2079 GMarkupParseContext *context; | |
2080 GError *error = NULL; | |
2081 | |
2082 gaim_debug(GAIM_DEBUG_INFO, "blist import", | |
2083 "Reading %s\n", filename); | |
2084 if(!g_file_get_contents(filename, &contents, &length, &error)) { | |
2085 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
2086 "Error reading blist: %s\n", error->message); | |
2087 g_error_free(error); | |
2088 return FALSE; | |
2089 } | |
2090 | |
2091 context = g_markup_parse_context_new(&blist_parser, 0, NULL, NULL); | |
2092 | |
2093 if(!g_markup_parse_context_parse(context, contents, length, NULL)) { | |
2094 g_markup_parse_context_free(context); | |
2095 g_free(contents); | |
2096 return FALSE; | |
2097 } | |
2098 | |
2099 if(!g_markup_parse_context_end_parse(context, NULL)) { | |
2100 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
2101 "Error parsing %s\n", filename); | |
2102 g_markup_parse_context_free(context); | |
2103 g_free(contents); | |
2104 return FALSE; | |
2105 } | |
2106 | |
2107 g_markup_parse_context_free(context); | |
2108 g_free(contents); | |
2109 | |
2110 if(blist_parser_error_occurred) | |
2111 return FALSE; | |
2112 | |
2113 gaim_debug(GAIM_DEBUG_INFO, "blist import", "Finished reading %s\n", | |
2114 filename); | |
2115 | |
2116 return TRUE; | |
2117 } | |
2118 | |
2119 void gaim_blist_load() { | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2120 GList *accts; |
5228 | 2121 char *user_dir = gaim_user_dir(); |
2122 char *filename; | |
2123 char *msg; | |
2124 | |
2125 blist_safe_to_write = TRUE; | |
2126 | |
2127 if(!user_dir) | |
2128 return; | |
2129 | |
2130 filename = g_build_filename(user_dir, "blist.xml", NULL); | |
2131 | |
2132 if(g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
2133 if(!gaim_blist_read(filename)) { | |
2134 msg = g_strdup_printf(_("An error was encountered parsing your " | |
2135 "buddy list. It has not been loaded.")); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2136 gaim_notify_error(NULL, NULL, _("Buddy List Error"), msg); |
5228 | 2137 g_free(msg); |
2138 } | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2139 } else if(g_list_length(gaim_accounts_get_all())) { |
5228 | 2140 /* 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
|
2141 for(accts = gaim_accounts_get_all(); accts; accts = accts->next) { |
5228 | 2142 do_import(accts->data, NULL); |
2143 } | |
2144 gaim_blist_save(); | |
2145 } | |
2146 | |
2147 g_free(filename); | |
2148 } | |
2149 | |
2150 static void blist_print_group_settings(gpointer key, gpointer data, | |
2151 gpointer user_data) { | |
2152 char *key_val; | |
2153 char *data_val; | |
2154 FILE *file = user_data; | |
2155 | |
2156 if(!key || !data) | |
2157 return; | |
2158 | |
2159 key_val = g_markup_escape_text(key, -1); | |
2160 data_val = g_markup_escape_text(data, -1); | |
2161 | |
2162 fprintf(file, "\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
2163 data_val); | |
2164 g_free(key_val); | |
2165 g_free(data_val); | |
2166 } | |
2167 | |
2168 static void blist_print_buddy_settings(gpointer key, gpointer data, | |
2169 gpointer user_data) { | |
2170 char *key_val; | |
2171 char *data_val; | |
2172 FILE *file = user_data; | |
2173 | |
2174 if(!key || !data) | |
2175 return; | |
2176 | |
2177 key_val = g_markup_escape_text(key, -1); | |
2178 data_val = g_markup_escape_text(data, -1); | |
2179 | |
2180 fprintf(file, "\t\t\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
2181 data_val); | |
2182 g_free(key_val); | |
2183 g_free(data_val); | |
2184 } | |
2185 | |
6695 | 2186 static void blist_print_cnode_settings(gpointer key, gpointer data, |
2187 gpointer user_data) { | |
2188 char *key_val; | |
2189 char *data_val; | |
2190 FILE *file = user_data; | |
2191 | |
2192 if(!key || !data) | |
2193 return; | |
2194 | |
2195 key_val = g_markup_escape_text(key, -1); | |
2196 data_val = g_markup_escape_text(data, -1); | |
2197 | |
2198 fprintf(file, "\t\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
2199 data_val); | |
2200 g_free(key_val); | |
2201 g_free(data_val); | |
2202 } | |
2203 | |
5234 | 2204 static void blist_print_chat_components(gpointer key, gpointer data, |
2205 gpointer user_data) { | |
2206 char *key_val; | |
2207 char *data_val; | |
2208 FILE *file = user_data; | |
2209 | |
2210 if(!key || !data) | |
2211 return; | |
2212 | |
2213 key_val = g_markup_escape_text(key, -1); | |
2214 data_val = g_markup_escape_text(data, -1); | |
2215 | |
2216 fprintf(file, "\t\t\t\t<component name=\"%s\">%s</component>\n", key_val, | |
2217 data_val); | |
2218 g_free(key_val); | |
2219 g_free(data_val); | |
2220 } | |
2221 | |
6695 | 2222 static void print_buddy(FILE *file, GaimBuddy *buddy) { |
2223 char *bud_name = g_markup_escape_text(buddy->name, -1); | |
2224 char *bud_alias = NULL; | |
2225 char *acct_name = g_markup_escape_text(buddy->account->username, -1); | |
2226 if(buddy->alias) | |
2227 bud_alias= g_markup_escape_text(buddy->alias, -1); | |
2228 fprintf(file, "\t\t\t\t<buddy protocol=\"%d\" " | |
2229 "account=\"%s\">\n", | |
2230 gaim_account_get_protocol(buddy->account), | |
2231 acct_name); | |
2232 fprintf(file, "\t\t\t\t\t<name>%s</name>\n", bud_name); | |
2233 if(bud_alias) { | |
2234 fprintf(file, "\t\t\t\t\t<alias>%s</alias>\n", bud_alias); | |
2235 } | |
2236 g_hash_table_foreach(buddy->settings, blist_print_buddy_settings, file); | |
2237 fprintf(file, "\t\t\t\t</buddy>\n"); | |
2238 g_free(bud_name); | |
2239 g_free(bud_alias); | |
2240 g_free(acct_name); | |
2241 } | |
2242 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2243 static void gaim_blist_write(FILE *file, GaimAccount *exp_acct) { |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2244 GList *accounts; |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2245 GSList *buds; |
6695 | 2246 GaimBlistNode *gnode, *cnode, *bnode; |
5228 | 2247 fprintf(file, "<?xml version='1.0' encoding='UTF-8' ?>\n"); |
2248 fprintf(file, "<gaim version=\"1\">\n"); | |
2249 fprintf(file, "\t<blist>\n"); | |
2250 | |
2251 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
6695 | 2252 GaimGroup *group; |
2253 | |
5228 | 2254 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
2255 continue; | |
6695 | 2256 |
2257 group = (GaimGroup *)gnode; | |
5228 | 2258 if(!exp_acct || gaim_group_on_account(group, exp_acct)) { |
2259 char *group_name = g_markup_escape_text(group->name, -1); | |
2260 fprintf(file, "\t\t<group name=\"%s\">\n", group_name); | |
2261 g_hash_table_foreach(group->settings, blist_print_group_settings, file); | |
6695 | 2262 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
2263 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
6755 | 2264 GaimContact *contact = (GaimContact*)cnode; |
2265 fprintf(file, "\t\t\t<contact"); | |
2266 if(contact->alias) { | |
2267 char *alias = g_markup_escape_text(contact->alias, -1); | |
2268 fprintf(file, " alias=\"%s\"", alias); | |
2269 g_free(alias); | |
2270 } | |
2271 fprintf(file, ">\n"); | |
6695 | 2272 |
2273 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
2274 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
2275 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
2276 if(!exp_acct || buddy->account == exp_acct) { | |
2277 print_buddy(file, buddy); | |
2278 } | |
5234 | 2279 } |
5228 | 2280 } |
6695 | 2281 |
2282 fprintf(file, "\t\t\t</contact>\n"); | |
2283 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
2284 GaimBlistChat *chat = (GaimBlistChat *)cnode; | |
5234 | 2285 if(!exp_acct || chat->account == exp_acct) { |
2286 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
|
2287 fprintf(file, "\t\t\t<chat protocol=\"%d\" account=\"%s\">\n", |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2288 gaim_account_get_protocol(chat->account), |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2289 acct_name); |
5237 | 2290 if(chat->alias) { |
2291 char *chat_alias = g_markup_escape_text(chat->alias, -1); | |
2292 fprintf(file, "\t\t\t\t<alias>%s</alias>\n", chat_alias); | |
2293 g_free(chat_alias); | |
2294 } | |
5234 | 2295 g_hash_table_foreach(chat->components, |
2296 blist_print_chat_components, file); | |
5906 | 2297 g_hash_table_foreach(chat->settings, |
6695 | 2298 blist_print_cnode_settings, file); |
5234 | 2299 fprintf(file, "\t\t\t</chat>\n"); |
5237 | 2300 g_free(acct_name); |
5234 | 2301 } |
5228 | 2302 } |
2303 } | |
2304 fprintf(file, "\t\t</group>\n"); | |
2305 g_free(group_name); | |
2306 } | |
2307 } | |
2308 | |
2309 fprintf(file, "\t</blist>\n"); | |
2310 fprintf(file, "\t<privacy>\n"); | |
2311 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2312 for(accounts = gaim_accounts_get_all(); |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2313 accounts != NULL; |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2314 accounts = accounts->next) { |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2315 |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2316 GaimAccount *account = accounts->data; |
5228 | 2317 char *acct_name = g_markup_escape_text(account->username, -1); |
2318 if(!exp_acct || account == exp_acct) { | |
2319 fprintf(file, "\t\t<account protocol=\"%d\" name=\"%s\" " | |
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2320 "mode=\"%d\">\n", gaim_account_get_protocol(account), |
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2321 acct_name, account->perm_deny); |
5228 | 2322 for(buds = account->permit; buds; buds = buds->next) { |
2323 char *bud_name = g_markup_escape_text(buds->data, -1); | |
2324 fprintf(file, "\t\t\t<permit>%s</permit>\n", bud_name); | |
2325 g_free(bud_name); | |
2326 } | |
2327 for(buds = account->deny; buds; buds = buds->next) { | |
2328 char *bud_name = g_markup_escape_text(buds->data, -1); | |
2329 fprintf(file, "\t\t\t<block>%s</block>\n", bud_name); | |
2330 g_free(bud_name); | |
2331 } | |
2332 fprintf(file, "\t\t</account>\n"); | |
2333 } | |
2334 g_free(acct_name); | |
2335 } | |
2336 | |
2337 fprintf(file, "\t</privacy>\n"); | |
2338 fprintf(file, "</gaim>\n"); | |
2339 } | |
2340 | |
2341 void gaim_blist_save() { | |
2342 FILE *file; | |
2343 char *user_dir = gaim_user_dir(); | |
2344 char *filename; | |
2345 char *filename_real; | |
2346 | |
2347 if(!user_dir) | |
2348 return; | |
2349 if(!blist_safe_to_write) { | |
2350 gaim_debug(GAIM_DEBUG_WARNING, "blist save", | |
2351 "AHH!! Tried to write the blist before we read it!\n"); | |
2352 return; | |
2353 } | |
2354 | |
2355 file = fopen(user_dir, "r"); | |
2356 if(!file) | |
2357 mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); | |
2358 else | |
2359 fclose(file); | |
2360 | |
2361 filename = g_build_filename(user_dir, "blist.xml.save", NULL); | |
2362 | |
2363 if((file = fopen(filename, "w"))) { | |
2364 gaim_blist_write(file, NULL); | |
2365 fclose(file); | |
2366 chmod(filename, S_IRUSR | S_IWUSR); | |
2367 } else { | |
2368 gaim_debug(GAIM_DEBUG_ERROR, "blist save", "Unable to write %s\n", | |
2369 filename); | |
2370 } | |
2371 | |
2372 filename_real = g_build_filename(user_dir, "blist.xml", NULL); | |
2373 | |
2374 if(rename(filename, filename_real) < 0) | |
2375 gaim_debug(GAIM_DEBUG_ERROR, "blist save", | |
2376 "Error renaming %s to %s\n", filename, filename_real); | |
2377 | |
2378 | |
2379 g_free(filename); | |
2380 g_free(filename_real); | |
2381 } | |
2382 | |
6695 | 2383 void gaim_group_set_setting(GaimGroup *g, const char *key, |
5228 | 2384 const char *value) { |
2385 if(!g) | |
2386 return; | |
2387 g_hash_table_replace(g->settings, g_strdup(key), g_strdup(value)); | |
2388 } | |
2389 | |
6695 | 2390 char *gaim_group_get_setting(GaimGroup *g, const char *key) { |
5228 | 2391 if(!g) |
2392 return NULL; | |
2393 return g_strdup(g_hash_table_lookup(g->settings, key)); | |
2394 } | |
2395 | |
6695 | 2396 void gaim_blist_chat_set_setting(GaimBlistChat *c, const char *key, |
5906 | 2397 const char *value) |
2398 { | |
2399 if(!c) | |
2400 return; | |
2401 g_hash_table_replace(c->settings, g_strdup(key), g_strdup(value)); | |
2402 } | |
2403 | |
6695 | 2404 char *gaim_blist_chat_get_setting(GaimBlistChat *c, const char *key) |
5906 | 2405 { |
2406 if(!c) | |
2407 return NULL; | |
2408 return g_strdup(g_hash_table_lookup(c->settings, key)); | |
2409 } | |
2410 | |
6695 | 2411 void gaim_buddy_set_setting(GaimBuddy *b, const char *key, |
5228 | 2412 const char *value) { |
2413 if(!b) | |
2414 return; | |
2415 g_hash_table_replace(b->settings, g_strdup(key), g_strdup(value)); | |
2416 } | |
2417 | |
6695 | 2418 char *gaim_buddy_get_setting(GaimBuddy *b, const char *key) { |
5228 | 2419 if(!b) |
2420 return NULL; | |
2421 return g_strdup(g_hash_table_lookup(b->settings, key)); | |
2422 } | |
2423 | |
2424 void gaim_set_blist_ui_ops(struct gaim_blist_ui_ops *ops) | |
2425 { | |
2426 blist_ui_ops = ops; | |
2427 } | |
2428 | |
2429 struct gaim_blist_ui_ops * | |
2430 gaim_get_blist_ui_ops(void) | |
2431 { | |
2432 return blist_ui_ops; | |
2433 } | |
2434 | |
6695 | 2435 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline) { |
5228 | 2436 if(!group) |
2437 return 0; | |
2438 | |
5277 | 2439 return offline ? group->totalsize : group->currentsize; |
5228 | 2440 } |
2441 | |
6695 | 2442 int gaim_blist_get_group_online_count(GaimGroup *group) { |
5228 | 2443 if(!group) |
2444 return 0; | |
2445 | |
5277 | 2446 return group->online; |
5228 | 2447 } |
2448 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2449 void * |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2450 gaim_blist_get_handle(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2451 { |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2452 static int handle; |
5228 | 2453 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2454 return &handle; |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2455 } |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2456 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2457 void |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2458 gaim_blist_init(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2459 { |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2460 void *handle = gaim_blist_get_handle(); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2461 |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2462 gaim_signal_register(handle, "buddy-away", |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2463 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2464 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2465 GAIM_SUBTYPE_BLIST_BUDDY)); |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2466 |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2467 gaim_signal_register(handle, "buddy-back", |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2468 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2469 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2470 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2471 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2472 gaim_signal_register(handle, "buddy-idle", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2473 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2474 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2475 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2476 gaim_signal_register(handle, "buddy-unidle", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2477 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2478 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2479 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2480 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2481 gaim_signal_register(handle, "buddy-signed-on", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2482 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2483 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2484 GAIM_SUBTYPE_BLIST_BUDDY)); |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2485 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2486 gaim_signal_register(handle, "buddy-signed-off", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2487 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2488 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2489 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2490 |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2491 gaim_signal_register(handle, "update-idle", gaim_marshal_VOID, NULL, 0); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2492 } |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2493 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2494 void |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2495 gaim_blist_uninit(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2496 { |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2497 gaim_signals_unregister_by_instance(gaim_blist_get_handle()); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2498 } |