Mercurial > pidgin
annotate src/blist.c @ 10827:53e7884c549a
[gaim-migrate @ 12492]
this should fix some problems with contact aware conversations, while
possibly introducing new problems, and breaking some plugins.
Someone needs to just remove GaimConvWindows all together.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Fri, 15 Apr 2005 22:32:00 +0000 |
parents | d83f745c997b |
children | a3ce85181220 |
rev | line source |
---|---|
5228 | 1 /* |
2 * gaim | |
3 * | |
8046 | 4 * Gaim is the legal property of its developers, whose names are too numerous |
5 * to list here. Please refer to the COPYRIGHT file distributed with this | |
6 * source distribution. | |
5228 | 7 * |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 * | |
22 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
23 #include "internal.h" |
5228 | 24 #include "blist.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
25 #include "conversation.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
26 #include "debug.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" |
10431 | 34 #include "value.h" |
7132 | 35 #include "xmlnode.h" |
5228 | 36 |
37 #define PATHSIZE 1024 | |
38 | |
10426 | 39 static GaimBlistUiOps *blist_ui_ops = NULL; |
40 | |
41 static GaimBuddyList *gaimbuddylist = NULL; | |
10428 | 42 static guint save_timer = 0; |
10426 | 43 static gboolean blist_loaded = FALSE; |
7693 | 44 |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
45 |
10428 | 46 /********************************************************************* |
47 * Private utility functions * | |
48 *********************************************************************/ | |
49 | |
5228 | 50 static GaimBlistNode *gaim_blist_get_last_sibling(GaimBlistNode *node) |
51 { | |
52 GaimBlistNode *n = node; | |
53 if (!n) | |
54 return NULL; | |
55 while (n->next) | |
56 n = n->next; | |
57 return n; | |
58 } | |
6695 | 59 |
5228 | 60 static GaimBlistNode *gaim_blist_get_last_child(GaimBlistNode *node) |
61 { | |
62 if (!node) | |
63 return NULL; | |
64 return gaim_blist_get_last_sibling(node->child); | |
65 } | |
66 | |
5247 | 67 struct _gaim_hbuddy { |
68 char *name; | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
69 GaimAccount *account; |
5758 | 70 GaimBlistNode *group; |
5247 | 71 }; |
72 | |
9285 | 73 static guint _gaim_blist_hbuddy_hash(struct _gaim_hbuddy *hb) |
5247 | 74 { |
75 return g_str_hash(hb->name); | |
76 } | |
77 | |
9285 | 78 static guint _gaim_blist_hbuddy_equal(struct _gaim_hbuddy *hb1, struct _gaim_hbuddy *hb2) |
5247 | 79 { |
5758 | 80 return ((!strcmp(hb1->name, hb2->name)) && hb1->account == hb2->account && hb1->group == hb2->group); |
5247 | 81 } |
82 | |
6742 | 83 static void _gaim_blist_hbuddy_free_key(struct _gaim_hbuddy *hb) |
84 { | |
85 g_free(hb->name); | |
86 g_free(hb); | |
87 } | |
88 | |
10428 | 89 |
90 /********************************************************************* | |
10429 | 91 * Writing to disk * |
10428 | 92 *********************************************************************/ |
93 | |
94 static void | |
10430 | 95 value_to_xmlnode(gpointer key, gpointer hvalue, gpointer user_data) |
10428 | 96 { |
10429 | 97 const char *name; |
10430 | 98 GaimValue *value; |
10429 | 99 xmlnode *node, *child; |
100 char buf[20]; | |
101 | |
102 name = (const char *)key; | |
10430 | 103 value = (GaimValue *)hvalue; |
10429 | 104 node = (xmlnode *)user_data; |
105 | |
10475 | 106 g_return_if_fail(value != NULL); |
107 | |
10429 | 108 child = xmlnode_new_child(node, "setting"); |
109 xmlnode_set_attrib(child, "name", name); | |
110 | |
10430 | 111 if (gaim_value_get_type(value) == GAIM_TYPE_INT) { |
10429 | 112 xmlnode_set_attrib(child, "type", "int"); |
10430 | 113 snprintf(buf, sizeof(buf), "%d", gaim_value_get_int(value)); |
10429 | 114 xmlnode_insert_data(child, buf, -1); |
10428 | 115 } |
10430 | 116 else if (gaim_value_get_type(value) == GAIM_TYPE_STRING) { |
10429 | 117 xmlnode_set_attrib(child, "type", "string"); |
10430 | 118 xmlnode_insert_data(child, gaim_value_get_string(value), -1); |
10429 | 119 } |
10430 | 120 else if (gaim_value_get_type(value) == GAIM_TYPE_BOOLEAN) { |
10429 | 121 xmlnode_set_attrib(child, "type", "bool"); |
10430 | 122 snprintf(buf, sizeof(buf), "%d", gaim_value_get_boolean(value)); |
10429 | 123 xmlnode_insert_data(child, buf, -1); |
124 } | |
10428 | 125 } |
126 | |
127 static void | |
10429 | 128 chat_component_to_xmlnode(gpointer key, gpointer value, gpointer user_data) |
10428 | 129 { |
10429 | 130 const char *name; |
131 const char *data; | |
132 xmlnode *node, *child; | |
133 | |
134 name = (const char *)key; | |
135 data = (const char *)value; | |
136 node = (xmlnode *)user_data; | |
137 | |
10431 | 138 g_return_if_fail(data != NULL); |
139 | |
10429 | 140 child = xmlnode_new_child(node, "component"); |
141 xmlnode_set_attrib(child, "name", name); | |
142 xmlnode_insert_data(child, data, -1); | |
143 } | |
144 | |
145 xmlnode * | |
146 buddy_to_xmlnode(GaimBlistNode *bnode) | |
147 { | |
148 xmlnode *node, *child; | |
149 GaimBuddy *buddy; | |
150 | |
151 buddy = (GaimBuddy *)bnode; | |
152 | |
153 node = xmlnode_new("buddy"); | |
154 xmlnode_set_attrib(node, "account", gaim_account_get_username(buddy->account)); | |
155 xmlnode_set_attrib(node, "proto", gaim_account_get_protocol_id(buddy->account)); | |
156 | |
157 child = xmlnode_new_child(node, "name"); | |
158 xmlnode_insert_data(child, buddy->name, -1); | |
159 | |
160 if (buddy->alias != NULL) | |
161 { | |
162 child = xmlnode_new_child(node, "alias"); | |
163 xmlnode_insert_data(child, buddy->alias, -1); | |
10428 | 164 } |
165 | |
10429 | 166 /* Write buddy settings */ |
10430 | 167 g_hash_table_foreach(buddy->node.settings, value_to_xmlnode, node); |
10429 | 168 |
169 return node; | |
10428 | 170 } |
171 | |
10429 | 172 xmlnode * |
173 contact_to_xmlnode(GaimBlistNode *cnode) | |
10428 | 174 { |
10429 | 175 xmlnode *node, *child; |
176 GaimContact *contact; | |
177 GaimBlistNode *bnode; | |
178 | |
179 contact = (GaimContact *)cnode; | |
180 | |
181 node = xmlnode_new("contact"); | |
182 | |
183 if (contact->alias != NULL) | |
184 { | |
185 xmlnode_set_attrib(node, "alias", contact->alias); | |
10428 | 186 } |
10429 | 187 |
188 /* Write buddies */ | |
189 for (bnode = cnode->child; bnode != NULL; bnode = bnode->next) | |
190 { | |
191 if (!GAIM_BLIST_NODE_SHOULD_SAVE(bnode)) | |
192 continue; | |
193 if (GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
194 { | |
195 child = buddy_to_xmlnode(bnode); | |
196 xmlnode_insert_child(node, child); | |
10428 | 197 } |
198 } | |
199 | |
10429 | 200 /* Write contact settings */ |
10430 | 201 g_hash_table_foreach(cnode->settings, value_to_xmlnode, node); |
10429 | 202 |
203 return node; | |
10428 | 204 } |
205 | |
10429 | 206 xmlnode * |
207 chat_to_xmlnode(GaimBlistNode *cnode) | |
10428 | 208 { |
10429 | 209 xmlnode *node, *child; |
210 GaimChat *chat; | |
211 | |
212 chat = (GaimChat *)cnode; | |
213 | |
214 node = xmlnode_new("chat"); | |
215 xmlnode_set_attrib(node, "proto", gaim_account_get_protocol_id(chat->account)); | |
216 xmlnode_set_attrib(node, "account", gaim_account_get_username(chat->account)); | |
217 | |
218 if (chat->alias != NULL) | |
219 { | |
220 child = xmlnode_new_child(node, "alias"); | |
221 xmlnode_insert_data(child, chat->alias, -1); | |
10428 | 222 } |
223 | |
10429 | 224 /* Write chat components */ |
225 g_hash_table_foreach(chat->components, chat_component_to_xmlnode, node); | |
226 | |
227 /* Write chat settings */ | |
10430 | 228 g_hash_table_foreach(chat->node.settings, value_to_xmlnode, node); |
10429 | 229 |
230 return node; | |
10428 | 231 } |
232 | |
10429 | 233 xmlnode * |
234 group_to_xmlnode(GaimBlistNode *gnode) | |
10428 | 235 { |
10429 | 236 xmlnode *node, *child; |
237 GaimGroup *group; | |
238 GaimBlistNode *cnode; | |
239 | |
240 group = (GaimGroup *)gnode; | |
241 | |
242 node = xmlnode_new("group"); | |
243 xmlnode_set_attrib(node, "name", group->name); | |
244 | |
245 /* Write settings */ | |
10430 | 246 g_hash_table_foreach(group->node.settings, value_to_xmlnode, node); |
10429 | 247 |
248 /* Write contacts and chats */ | |
249 for (cnode = gnode->child; cnode != NULL; cnode = cnode->next) | |
250 { | |
251 if (!GAIM_BLIST_NODE_SHOULD_SAVE(cnode)) | |
252 continue; | |
253 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
254 { | |
255 child = contact_to_xmlnode(cnode); | |
256 xmlnode_insert_child(node, child); | |
257 } | |
258 else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) | |
259 { | |
260 child = chat_to_xmlnode(cnode); | |
261 xmlnode_insert_child(node, child); | |
10428 | 262 } |
263 } | |
264 | |
10429 | 265 return node; |
10428 | 266 } |
267 | |
10429 | 268 xmlnode * |
269 accountprivacy_to_xmlnode(GaimAccount *account) | |
10428 | 270 { |
10429 | 271 xmlnode *node, *child; |
272 GSList *cur; | |
273 char buf[10]; | |
274 | |
275 node = xmlnode_new("account"); | |
276 xmlnode_set_attrib(node, "proto", gaim_account_get_protocol_id(account)); | |
277 xmlnode_set_attrib(node, "name", gaim_account_get_username(account)); | |
278 snprintf(buf, sizeof(buf), "%d", account->perm_deny); | |
279 xmlnode_set_attrib(node, "mode", buf); | |
280 | |
281 for (cur = account->permit; cur; cur = cur->next) | |
282 { | |
283 child = xmlnode_new_child(node, "permit"); | |
284 xmlnode_insert_data(child, cur->data, -1); | |
10428 | 285 } |
286 | |
10429 | 287 for (cur = account->deny; cur; cur = cur->next) |
288 { | |
289 child = xmlnode_new_child(node, "block"); | |
290 xmlnode_insert_data(child, cur->data, -1); | |
10428 | 291 } |
292 | |
10429 | 293 return node; |
10428 | 294 } |
295 | |
10429 | 296 xmlnode * |
297 blist_to_xmlnode() | |
10428 | 298 { |
10429 | 299 xmlnode *node, *child, *grandchild; |
10428 | 300 GaimBlistNode *gnode; |
10429 | 301 GList *cur; |
302 | |
303 node = xmlnode_new("gaim"); | |
304 xmlnode_set_attrib(node, "version", "1.0"); | |
305 | |
306 /* Write groups */ | |
307 child = xmlnode_new_child(node, "blist"); | |
308 for (gnode = gaimbuddylist->root; gnode != NULL; gnode = gnode->next) | |
309 { | |
310 if (!GAIM_BLIST_NODE_SHOULD_SAVE(gnode)) | |
311 continue; | |
10428 | 312 if (GAIM_BLIST_NODE_IS_GROUP(gnode)) |
10429 | 313 { |
314 grandchild = group_to_xmlnode(gnode); | |
315 xmlnode_insert_child(child, grandchild); | |
316 } | |
10428 | 317 } |
318 | |
10429 | 319 /* Write privacy settings */ |
320 child = xmlnode_new_child(node, "privacy"); | |
321 for (cur = gaim_accounts_get_all(); cur != NULL; cur = cur->next) | |
322 { | |
323 grandchild = accountprivacy_to_xmlnode(cur->data); | |
324 xmlnode_insert_child(child, grandchild); | |
10428 | 325 } |
326 | |
10429 | 327 return node; |
10428 | 328 } |
329 | |
330 void | |
331 gaim_blist_sync() | |
10378 | 332 { |
10429 | 333 xmlnode *node; |
334 char *data; | |
335 | |
336 if (!blist_loaded) | |
337 { | |
338 gaim_debug_error("blist", "Attempted to save buddy list before it " | |
339 "was read!\n"); | |
10428 | 340 return; |
341 } | |
342 | |
10429 | 343 node = blist_to_xmlnode(); |
344 data = xmlnode_to_formatted_str(node, NULL); | |
345 gaim_util_write_data_to_file("blist.xml", data, -1); | |
346 g_free(data); | |
347 xmlnode_free(node); | |
10428 | 348 } |
349 | |
350 static gboolean | |
351 save_cb(gpointer data) | |
352 { | |
353 gaim_blist_sync(); | |
354 save_timer = 0; | |
355 return FALSE; | |
356 } | |
357 | |
10704 | 358 void |
359 gaim_blist_schedule_save() | |
10428 | 360 { |
361 if (save_timer == 0) | |
362 save_timer = gaim_timeout_add(5000, save_cb, NULL); | |
363 } | |
364 | |
365 | |
366 /********************************************************************* | |
367 * Reading from disk * | |
368 *********************************************************************/ | |
369 | |
370 static void | |
371 parse_setting(GaimBlistNode *node, xmlnode *setting) | |
372 { | |
373 const char *name = xmlnode_get_attrib(setting, "name"); | |
374 const char *type = xmlnode_get_attrib(setting, "type"); | |
375 char *value = xmlnode_get_data(setting); | |
376 | |
377 if (!value) | |
378 return; | |
379 | |
380 if (!type || !strcmp(type, "string")) | |
381 gaim_blist_node_set_string(node, name, value); | |
382 else if (!strcmp(type, "bool")) | |
383 gaim_blist_node_set_bool(node, name, atoi(value)); | |
384 else if (!strcmp(type, "int")) | |
385 gaim_blist_node_set_int(node, name, atoi(value)); | |
386 | |
387 g_free(value); | |
388 } | |
389 | |
390 static void | |
391 parse_buddy(GaimGroup *group, GaimContact *contact, xmlnode *bnode) | |
392 { | |
393 GaimAccount *account; | |
394 GaimBuddy *buddy; | |
395 char *name = NULL, *alias = NULL; | |
396 const char *acct_name, *proto, *protocol; | |
397 xmlnode *x; | |
398 | |
399 acct_name = xmlnode_get_attrib(bnode, "account"); | |
400 protocol = xmlnode_get_attrib(bnode, "protocol"); | |
401 proto = xmlnode_get_attrib(bnode, "proto"); | |
402 | |
403 if (!acct_name || (!proto && !protocol)) | |
404 return; | |
405 | |
406 account = gaim_accounts_find(acct_name, proto ? proto : protocol); | |
407 | |
408 if (!account) | |
409 return; | |
410 | |
411 if ((x = xmlnode_get_child(bnode, "name"))) | |
412 name = xmlnode_get_data(x); | |
413 | |
414 if (!name) | |
415 return; | |
416 | |
417 if ((x = xmlnode_get_child(bnode, "alias"))) | |
418 alias = xmlnode_get_data(x); | |
419 | |
420 buddy = gaim_buddy_new(account, name, alias); | |
421 gaim_blist_add_buddy(buddy, contact, group, | |
422 gaim_blist_get_last_child((GaimBlistNode*)contact)); | |
423 | |
424 for (x = xmlnode_get_child(bnode, "setting"); x; x = xmlnode_get_next_twin(x)) { | |
425 parse_setting((GaimBlistNode*)buddy, x); | |
426 } | |
427 | |
428 g_free(name); | |
429 if (alias) | |
430 g_free(alias); | |
10378 | 431 } |
432 | |
10428 | 433 static void |
434 parse_contact(GaimGroup *group, xmlnode *cnode) | |
435 { | |
436 GaimContact *contact = gaim_contact_new(); | |
437 xmlnode *x; | |
438 const char *alias; | |
439 | |
440 gaim_blist_add_contact(contact, group, | |
441 gaim_blist_get_last_child((GaimBlistNode*)group)); | |
442 | |
443 if ((alias = xmlnode_get_attrib(cnode, "alias"))) { | |
444 gaim_contact_set_alias(contact, alias); | |
445 } | |
446 | |
447 for (x = cnode->child; x; x = x->next) { | |
448 if (x->type != XMLNODE_TYPE_TAG) | |
449 continue; | |
450 if (!strcmp(x->name, "buddy")) | |
451 parse_buddy(group, contact, x); | |
452 else if (!strcmp(x->name, "setting")) | |
453 parse_setting((GaimBlistNode*)contact, x); | |
454 } | |
455 | |
456 /* if the contact is empty, don't keep it around. it causes problems */ | |
457 if (!((GaimBlistNode*)contact)->child) | |
458 gaim_blist_remove_contact(contact); | |
459 } | |
460 | |
461 static void | |
462 parse_chat(GaimGroup *group, xmlnode *cnode) | |
463 { | |
464 GaimChat *chat; | |
465 GaimAccount *account; | |
466 const char *acct_name, *proto, *protocol; | |
467 xmlnode *x; | |
468 char *alias = NULL; | |
469 GHashTable *components; | |
470 | |
471 acct_name = xmlnode_get_attrib(cnode, "account"); | |
472 protocol = xmlnode_get_attrib(cnode, "protocol"); | |
473 proto = xmlnode_get_attrib(cnode, "proto"); | |
474 | |
475 if (!acct_name || (!proto && !protocol)) | |
476 return; | |
477 | |
478 account = gaim_accounts_find(acct_name, proto ? proto : protocol); | |
479 | |
480 if (!account) | |
481 return; | |
482 | |
483 if ((x = xmlnode_get_child(cnode, "alias"))) | |
484 alias = xmlnode_get_data(x); | |
485 | |
486 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); | |
487 | |
488 for (x = xmlnode_get_child(cnode, "component"); x; x = xmlnode_get_next_twin(x)) { | |
489 const char *name; | |
490 char *value; | |
491 | |
492 name = xmlnode_get_attrib(x, "name"); | |
493 value = xmlnode_get_data(x); | |
494 g_hash_table_replace(components, g_strdup(name), value); | |
495 } | |
496 | |
497 chat = gaim_chat_new(account, alias, components); | |
498 gaim_blist_add_chat(chat, group, | |
499 gaim_blist_get_last_child((GaimBlistNode*)group)); | |
500 | |
501 for (x = xmlnode_get_child(cnode, "setting"); x; x = xmlnode_get_next_twin(x)) { | |
502 parse_setting((GaimBlistNode*)chat, x); | |
503 } | |
504 | |
505 if (alias) | |
506 g_free(alias); | |
507 } | |
508 | |
509 static void | |
510 parse_group(xmlnode *groupnode) | |
511 { | |
512 const char *name = xmlnode_get_attrib(groupnode, "name"); | |
513 GaimGroup *group; | |
514 xmlnode *cnode; | |
515 | |
516 if (!name) | |
517 name = _("Buddies"); | |
518 | |
519 group = gaim_group_new(name); | |
520 gaim_blist_add_group(group, | |
521 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
522 | |
523 for (cnode = groupnode->child; cnode; cnode = cnode->next) { | |
524 if (cnode->type != XMLNODE_TYPE_TAG) | |
525 continue; | |
526 if (!strcmp(cnode->name, "setting")) | |
527 parse_setting((GaimBlistNode*)group, cnode); | |
528 else if (!strcmp(cnode->name, "contact") || | |
529 !strcmp(cnode->name, "person")) | |
530 parse_contact(group, cnode); | |
531 else if (!strcmp(cnode->name, "chat")) | |
532 parse_chat(group, cnode); | |
533 } | |
534 } | |
535 | |
536 /* TODO: Make static and rename to load_blist */ | |
537 void | |
538 gaim_blist_load() | |
539 { | |
540 xmlnode *gaim, *blist, *privacy; | |
541 | |
542 blist_loaded = TRUE; | |
543 | |
544 gaim = gaim_util_read_xml_from_file("blist.xml", _("buddy list")); | |
545 | |
546 if (gaim == NULL) | |
547 return; | |
548 | |
549 blist = xmlnode_get_child(gaim, "blist"); | |
550 if (blist) { | |
551 xmlnode *groupnode; | |
552 for (groupnode = xmlnode_get_child(blist, "group"); groupnode != NULL; | |
553 groupnode = xmlnode_get_next_twin(groupnode)) { | |
554 parse_group(groupnode); | |
555 } | |
556 } | |
557 | |
558 privacy = xmlnode_get_child(gaim, "privacy"); | |
559 if (privacy) { | |
560 xmlnode *anode; | |
561 for (anode = privacy->child; anode; anode = anode->next) { | |
562 xmlnode *x; | |
563 GaimAccount *account; | |
564 const char *acct_name, *proto, *mode, *protocol; | |
565 | |
566 acct_name = xmlnode_get_attrib(anode, "name"); | |
567 protocol = xmlnode_get_attrib(anode, "protocol"); | |
568 proto = xmlnode_get_attrib(anode, "proto"); | |
569 mode = xmlnode_get_attrib(anode, "mode"); | |
570 | |
571 if (!acct_name || (!proto && !protocol) || !mode) | |
572 continue; | |
573 | |
574 account = gaim_accounts_find(acct_name, proto ? proto : protocol); | |
575 | |
576 if (!account) | |
577 continue; | |
578 | |
579 account->perm_deny = atoi(mode); | |
580 | |
581 for (x = anode->child; x; x = x->next) { | |
582 char *name; | |
583 if (x->type != XMLNODE_TYPE_TAG) | |
584 continue; | |
585 | |
586 if (!strcmp(x->name, "permit")) { | |
587 name = xmlnode_get_data(x); | |
588 gaim_privacy_permit_add(account, name, TRUE); | |
589 g_free(name); | |
590 } else if (!strcmp(x->name, "block")) { | |
591 name = xmlnode_get_data(x); | |
592 gaim_privacy_deny_add(account, name, TRUE); | |
593 g_free(name); | |
594 } | |
595 } | |
596 } | |
597 } | |
598 | |
599 xmlnode_free(gaim); | |
600 } | |
601 | |
602 | |
603 /********************************************************************* | |
604 * Stuff * | |
605 *********************************************************************/ | |
606 | |
607 static void | |
608 gaim_contact_compute_priority_buddy(GaimContact *contact) | |
6843 | 609 { |
610 GaimBlistNode *bnode; | |
9949 | 611 GaimBuddy *new_priority = NULL; |
9285 | 612 |
613 g_return_if_fail(contact != NULL); | |
614 | |
6870 | 615 contact->priority = NULL; |
9949 | 616 for (bnode = ((GaimBlistNode*)contact)->child; |
617 bnode != NULL; | |
618 bnode = bnode->next) | |
619 { | |
6843 | 620 GaimBuddy *buddy; |
7420 | 621 |
9285 | 622 if (!GAIM_BLIST_NODE_IS_BUDDY(bnode)) |
6843 | 623 continue; |
9949 | 624 |
6843 | 625 buddy = (GaimBuddy*)bnode; |
9949 | 626 |
9285 | 627 if (!gaim_account_is_connected(buddy->account)) |
6843 | 628 continue; |
9949 | 629 if (new_priority == NULL) |
630 new_priority = buddy; | |
631 else | |
632 { | |
633 int cmp; | |
10427 | 634 |
10368 | 635 cmp = gaim_presence_compare(gaim_buddy_get_presence(new_priority), |
636 gaim_buddy_get_presence(buddy)); | |
9949 | 637 |
638 if (cmp > 0 || (cmp == 0 && | |
10368 | 639 gaim_prefs_get_bool("/core/contact/last_match"))) |
9949 | 640 { |
641 new_priority = buddy; | |
642 } | |
643 } | |
6843 | 644 } |
9949 | 645 |
646 contact->priority = new_priority; | |
10378 | 647 contact->priority_valid = TRUE; |
6843 | 648 } |
649 | |
650 | |
5228 | 651 /***************************************************************************** |
652 * Public API functions * | |
653 *****************************************************************************/ | |
654 | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
655 GaimBuddyList *gaim_blist_new() |
5228 | 656 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
657 GaimBuddyList *gbl = g_new0(GaimBuddyList, 1); |
5228 | 658 |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
659 gbl->ui_ops = gaim_blist_get_ui_ops(); |
5228 | 660 |
6742 | 661 gbl->buddies = g_hash_table_new_full((GHashFunc)_gaim_blist_hbuddy_hash, |
662 (GEqualFunc)_gaim_blist_hbuddy_equal, | |
663 (GDestroyNotify)_gaim_blist_hbuddy_free_key, NULL); | |
5247 | 664 |
5228 | 665 if (gbl->ui_ops != NULL && gbl->ui_ops->new_list != NULL) |
666 gbl->ui_ops->new_list(gbl); | |
667 | |
668 return gbl; | |
669 } | |
670 | |
671 void | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
672 gaim_set_blist(GaimBuddyList *list) |
5228 | 673 { |
674 gaimbuddylist = list; | |
675 } | |
676 | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
677 GaimBuddyList * |
9285 | 678 gaim_get_blist() |
5228 | 679 { |
680 return gaimbuddylist; | |
681 } | |
682 | |
9285 | 683 void gaim_blist_show() |
5228 | 684 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
685 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 686 |
687 if (ops && ops->show) | |
5228 | 688 ops->show(gaimbuddylist); |
689 } | |
690 | |
691 void gaim_blist_destroy() | |
692 { | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
693 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 694 |
8259
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8200
diff
changeset
|
695 gaim_debug(GAIM_DEBUG_INFO, "blist", "Destroying\n"); |
9285 | 696 |
697 if (ops && ops->destroy) | |
5228 | 698 ops->destroy(gaimbuddylist); |
699 } | |
700 | |
9285 | 701 void gaim_blist_set_visible(gboolean show) |
5228 | 702 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
703 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 704 |
705 if (ops && ops->set_visible) | |
5228 | 706 ops->set_visible(gaimbuddylist, show); |
707 } | |
708 | |
9285 | 709 static gboolean presence_update_timeout_cb(GaimBuddy *buddy) |
710 { | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
711 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
712 GaimConversation *conv; |
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
713 |
9285 | 714 g_return_val_if_fail(buddy != NULL, FALSE); |
715 | |
716 if (buddy->present == GAIM_BUDDY_SIGNING_ON) { | |
5228 | 717 buddy->present = GAIM_BUDDY_ONLINE; |
9285 | 718 } else if (buddy->present == GAIM_BUDDY_SIGNING_OFF) { |
5228 | 719 buddy->present = GAIM_BUDDY_OFFLINE; |
6860 | 720 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online--; |
9285 | 721 if (((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 0) |
6860 | 722 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online--; |
5228 | 723 } |
724 | |
725 buddy->timer = 0; | |
726 | |
9285 | 727 if (ops && ops->update) |
5228 | 728 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); |
729 | |
10246 | 730 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, buddy->name, |
731 buddy->account); | |
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
732 if (conv) { |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
733 if (buddy->present == GAIM_BUDDY_ONLINE) |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
734 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_ONLINE); |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
735 else if (buddy->present == GAIM_BUDDY_OFFLINE) |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
736 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_OFFLINE); |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
737 } |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
738 |
5228 | 739 return FALSE; |
740 } | |
741 | |
10052 | 742 void |
743 gaim_blist_update_buddy_status(GaimBuddy *buddy, GaimStatus *old_status) | |
9285 | 744 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
745 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
10052 | 746 GaimPresence *presence; |
747 GaimStatus *status; | |
9285 | 748 |
749 g_return_if_fail(buddy != NULL); | |
5228 | 750 |
10052 | 751 presence = gaim_buddy_get_presence(buddy); |
752 status = gaim_presence_get_active_status(presence); | |
753 | |
754 gaim_debug_info("blist", "Updating buddy status\n"); | |
755 | |
756 if (gaim_status_is_online(status) && | |
757 !gaim_status_is_online(old_status)) { | |
6901 | 758 int old_present = buddy->present; |
10052 | 759 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
760 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-on", buddy); |
9285 | 761 if (old_present != GAIM_BUDDY_SIGNING_OFF) { |
6901 | 762 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online++; |
9285 | 763 if (((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 1) |
6901 | 764 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online++; |
765 } | |
10052 | 766 if (buddy->timer > 0) |
767 gaim_timeout_remove(buddy->timer); | |
768 buddy->timer = gaim_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
769 | |
770 } else if (!gaim_status_is_online(status) && | |
771 gaim_status_is_online(old_status)) { | |
5228 | 772 buddy->present = GAIM_BUDDY_SIGNING_OFF; |
10475 | 773 gaim_blist_node_set_int(&buddy->node, "last_seen", time(NULL)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
774 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-off", buddy); |
10052 | 775 if (buddy->timer > 0) |
776 gaim_timeout_remove(buddy->timer); | |
777 buddy->timer = gaim_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
778 | |
779 } else if (gaim_status_is_available(status) && | |
780 !gaim_status_is_available(old_status)) { | |
781 gaim_signal_emit(gaim_blist_get_handle(), "buddy-back", buddy); | |
782 | |
783 } else if (!gaim_status_is_available(status) && | |
784 gaim_status_is_available(old_status)) { | |
785 gaim_signal_emit(gaim_blist_get_handle(), "buddy-away", buddy); | |
786 | |
5228 | 787 } |
788 | |
10205 | 789 /* |
790 * This function used to only call the following two functions if one of | |
791 * the above signals had been triggered, but that's not good, because | |
792 * if someone's away message changes and they don't go from away to back | |
793 * to away then no signal is triggered. | |
794 * | |
795 * It's a safe assumption that SOMETHING called this function. PROBABLY | |
796 * because something, somewhere changed. Calling the stuff below | |
797 * certainly won't hurt anything. Unless you're on a K6-2 300. | |
798 */ | |
10378 | 799 gaim_contact_invalidate_priority_buddy(gaim_buddy_get_contact(buddy)); |
10205 | 800 if (ops && ops->update) |
801 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
5228 | 802 } |
803 | |
9285 | 804 void gaim_blist_update_buddy_icon(GaimBuddy *buddy) |
5228 | 805 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
806 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 807 |
808 g_return_if_fail(buddy != NULL); | |
809 | |
810 if (ops && ops->update) | |
811 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
812 } | |
813 | |
814 /* | |
10428 | 815 * TODO: Maybe remove the call to this from server.c and call it |
9285 | 816 * from oscar.c and toc.c instead? |
817 */ | |
818 void gaim_blist_rename_buddy(GaimBuddy *buddy, const char *name) | |
819 { | |
820 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; | |
821 struct _gaim_hbuddy *hb; | |
822 | |
823 g_return_if_fail(buddy != NULL); | |
824 | |
825 hb = g_new(struct _gaim_hbuddy, 1); | |
8675 | 826 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
827 hb->account = buddy->account; | |
828 hb->group = ((GaimBlistNode *)buddy)->parent->parent; | |
829 g_hash_table_remove(gaimbuddylist->buddies, hb); | |
830 | |
831 g_free(hb->name); | |
832 hb->name = g_strdup(gaim_normalize(buddy->account, name)); | |
833 g_hash_table_replace(gaimbuddylist->buddies, hb, buddy); | |
834 | |
5634 | 835 g_free(buddy->name); |
5228 | 836 buddy->name = g_strdup(name); |
9285 | 837 |
10704 | 838 gaim_blist_schedule_save(); |
9285 | 839 |
840 if (ops && ops->update) | |
841 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
5228 | 842 } |
5234 | 843 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
844 void gaim_blist_alias_chat(GaimChat *chat, const char *alias) |
5234 | 845 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
846 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
5234 | 847 |
9285 | 848 g_return_if_fail(chat != NULL); |
849 | |
5237 | 850 g_free(chat->alias); |
9285 | 851 if ((alias != NULL) && (*alias != '\0')) |
5237 | 852 chat->alias = g_strdup(alias); |
853 else | |
854 chat->alias = NULL; | |
855 | |
10704 | 856 gaim_blist_schedule_save(); |
9285 | 857 |
858 if (ops && ops->update) | |
859 ops->update(gaimbuddylist, (GaimBlistNode *)chat); | |
5234 | 860 } |
861 | |
9285 | 862 void gaim_blist_alias_buddy(GaimBuddy *buddy, const char *alias) |
5228 | 863 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
864 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5634
diff
changeset
|
865 GaimConversation *conv; |
5228 | 866 |
9285 | 867 g_return_if_fail(buddy != NULL); |
868 | |
5228 | 869 g_free(buddy->alias); |
9285 | 870 if ((alias != NULL) && (*alias != '\0')) |
5228 | 871 buddy->alias = g_strdup(alias); |
872 else | |
873 buddy->alias = NULL; | |
874 | |
10704 | 875 gaim_blist_schedule_save(); |
9285 | 876 |
877 if (ops && ops->update) | |
878 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
5228 | 879 |
10246 | 880 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, buddy->name, |
881 buddy->account); | |
5228 | 882 if (conv) |
883 gaim_conversation_autoset_title(conv); | |
884 } | |
885 | |
9285 | 886 void gaim_blist_server_alias_buddy(GaimBuddy *buddy, const char *alias) |
6058 | 887 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
888 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6058 | 889 GaimConversation *conv; |
890 | |
9285 | 891 g_return_if_fail(buddy != NULL); |
892 | |
6058 | 893 g_free(buddy->server_alias); |
9285 | 894 if ((alias != NULL) && (*alias != '\0') && g_utf8_validate(alias, -1, NULL)) |
6058 | 895 buddy->server_alias = g_strdup(alias); |
896 else | |
897 buddy->server_alias = NULL; | |
898 | |
10704 | 899 gaim_blist_schedule_save(); |
9285 | 900 |
901 if (ops && ops->update) | |
902 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
6058 | 903 |
10246 | 904 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, buddy->name, |
905 buddy->account); | |
6058 | 906 if (conv) |
907 gaim_conversation_autoset_title(conv); | |
908 } | |
909 | |
9285 | 910 /* |
10428 | 911 * TODO: If merging, prompt the user if they want to merge. |
9285 | 912 */ |
913 void gaim_blist_rename_group(GaimGroup *source, const char *new_name) | |
5228 | 914 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
915 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 916 GaimGroup *dest; |
917 gchar *old_name; | |
918 GList *moved_buddies = NULL; | |
5346 | 919 GSList *accts; |
920 | |
9285 | 921 g_return_if_fail(source != NULL); |
922 g_return_if_fail(new_name != NULL); | |
923 | |
924 if (*new_name == '\0' || !strcmp(new_name, source->name)) | |
5346 | 925 return; |
9285 | 926 |
927 dest = gaim_find_group(new_name); | |
928 if (dest != NULL) { | |
929 /* We're merging two groups */ | |
930 GaimBlistNode *prev, *child, *next; | |
931 | |
932 prev = gaim_blist_get_last_child((GaimBlistNode*)dest); | |
933 child = ((GaimBlistNode*)source)->child; | |
934 | |
935 /* | |
10428 | 936 * TODO: This seems like a dumb way to do this... why not just |
9285 | 937 * append all children from the old group to the end of the new |
938 * one? PRPLs might be expecting to receive an add_buddy() for | |
939 * each moved buddy... | |
940 */ | |
941 while (child) | |
5346 | 942 { |
943 next = child->next; | |
9285 | 944 if (GAIM_BLIST_NODE_IS_CONTACT(child)) { |
6695 | 945 GaimBlistNode *bnode; |
9285 | 946 gaim_blist_add_contact((GaimContact *)child, dest, prev); |
947 for (bnode = child->child; bnode != NULL; bnode = bnode->next) { | |
948 gaim_blist_add_buddy((GaimBuddy *)bnode, (GaimContact *)child, | |
6695 | 949 NULL, bnode->prev); |
9285 | 950 moved_buddies = g_list_append(moved_buddies, bnode); |
951 } | |
5346 | 952 prev = child; |
9285 | 953 } else if (GAIM_BLIST_NODE_IS_CHAT(child)) { |
954 gaim_blist_add_chat((GaimChat *)child, dest, prev); | |
5346 | 955 prev = child; |
956 } else { | |
957 gaim_debug(GAIM_DEBUG_ERROR, "blist", | |
9285 | 958 "Unknown child type in group %s\n", source->name); |
5346 | 959 } |
960 child = next; | |
961 } | |
9285 | 962 |
963 /* Make a copy of the old group name and then delete the old group */ | |
964 old_name = g_strdup(source->name); | |
965 gaim_blist_remove_group(source); | |
5346 | 966 } else { |
9285 | 967 /* A simple rename */ |
968 GaimBlistNode *cnode, *bnode; | |
969 | |
970 /* Build a GList of all buddies in this group */ | |
971 for (cnode = ((GaimBlistNode *)source)->child; cnode != NULL; cnode = cnode->next) { | |
972 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
973 for (bnode = cnode->child; bnode != NULL; bnode = bnode->next) | |
974 moved_buddies = g_list_append(moved_buddies, bnode); | |
5346 | 975 } |
9285 | 976 |
977 old_name = source->name; | |
978 source->name = g_strdup(new_name); | |
979 | |
5346 | 980 } |
9285 | 981 |
982 /* Save our changes */ | |
10704 | 983 gaim_blist_schedule_save(); |
9285 | 984 |
985 /* Update the UI */ | |
986 if (ops && ops->update) | |
987 ops->update(gaimbuddylist, (GaimBlistNode*)source); | |
988 | |
989 /* Notify all PRPLs */ | |
990 for (accts = gaim_group_get_accounts(source); accts; accts = g_slist_remove(accts, accts->data)) { | |
991 GaimAccount *account = accts->data; | |
992 serv_rename_group(account->gc, old_name, source, moved_buddies); | |
993 } | |
994 g_list_free(moved_buddies); | |
995 g_free(old_name); | |
5228 | 996 } |
5234 | 997 |
9285 | 998 static void gaim_blist_node_initialize_settings(GaimBlistNode *node); |
7693 | 999 |
7125 | 1000 GaimChat *gaim_chat_new(GaimAccount *account, const char *alias, GHashTable *components) |
5234 | 1001 { |
9285 | 1002 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1003 GaimChat *chat; |
9285 | 1004 |
1005 g_return_val_if_fail(account != NULL, FALSE); | |
1006 g_return_val_if_fail(components != NULL, FALSE); | |
5234 | 1007 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1008 chat = g_new0(GaimChat, 1); |
5234 | 1009 chat->account = account; |
9285 | 1010 if ((alias != NULL) && (*alias != '\0')) |
5237 | 1011 chat->alias = g_strdup(alias); |
5234 | 1012 chat->components = components; |
9285 | 1013 gaim_blist_node_initialize_settings((GaimBlistNode *)chat); |
1014 ((GaimBlistNode *)chat)->type = GAIM_BLIST_CHAT_NODE; | |
5234 | 1015 |
1016 if (ops != NULL && ops->new_node != NULL) | |
1017 ops->new_node((GaimBlistNode *)chat); | |
1018 | |
1019 return chat; | |
1020 } | |
1021 | |
6695 | 1022 GaimBuddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias) |
5228 | 1023 { |
9285 | 1024 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
1025 GaimBuddy *buddy; | |
1026 | |
1027 g_return_val_if_fail(account != NULL, FALSE); | |
1028 g_return_val_if_fail(screenname != NULL, FALSE); | |
1029 | |
1030 buddy = g_new0(GaimBuddy, 1); | |
9949 | 1031 buddy->account = account; |
1032 buddy->name = g_strdup(screenname); | |
1033 buddy->alias = g_strdup(alias); | |
1034 buddy->presence = gaim_presence_new_for_buddy(buddy); | |
1035 | |
10052 | 1036 gaim_presence_set_status_active(buddy->presence, "offline", TRUE); |
1037 | |
9285 | 1038 gaim_blist_node_initialize_settings((GaimBlistNode *)buddy); |
1039 ((GaimBlistNode *)buddy)->type = GAIM_BLIST_BUDDY_NODE; | |
1040 | |
1041 if (ops && ops->new_node) | |
1042 ops->new_node((GaimBlistNode *)buddy); | |
1043 | |
1044 return buddy; | |
5228 | 1045 } |
5634 | 1046 |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1047 void |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1048 gaim_buddy_set_icon(GaimBuddy *buddy, GaimBuddyIcon *icon) |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1049 { |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1050 g_return_if_fail(buddy != NULL); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1051 |
9261
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1052 if (buddy->icon != icon) |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1053 { |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1054 if (buddy->icon != NULL) |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1055 gaim_buddy_icon_unref(buddy->icon); |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1056 |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1057 buddy->icon = (icon == NULL ? NULL : gaim_buddy_icon_ref(icon)); |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1058 } |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1059 |
9324 | 1060 if (buddy->icon) |
1061 gaim_buddy_icon_cache(icon, buddy); | |
1062 else | |
1063 gaim_blist_node_remove_setting((GaimBlistNode *)buddy, "buddy_icon"); | |
9299 | 1064 |
10704 | 1065 gaim_blist_schedule_save(); |
9926 | 1066 |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1067 gaim_blist_update_buddy_icon(buddy); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1068 } |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1069 |
10037
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1070 GaimAccount * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1071 gaim_buddy_get_account(const GaimBuddy *buddy) |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1072 { |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1073 g_return_val_if_fail(buddy != NULL, NULL); |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1074 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1075 return buddy->account; |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1076 } |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1077 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1078 const char * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1079 gaim_buddy_get_name(const GaimBuddy *buddy) |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1080 { |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1081 g_return_val_if_fail(buddy != NULL, NULL); |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1082 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1083 return buddy->name; |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1084 } |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1085 |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1086 GaimBuddyIcon * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1087 gaim_buddy_get_icon(const GaimBuddy *buddy) |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1088 { |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1089 g_return_val_if_fail(buddy != NULL, NULL); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1090 |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1091 return buddy->icon; |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1092 } |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1093 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1094 void gaim_blist_add_chat(GaimChat *chat, GaimGroup *group, GaimBlistNode *node) |
5234 | 1095 { |
9285 | 1096 GaimBlistNode *cnode = (GaimBlistNode*)chat; |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1097 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6774 | 1098 |
1099 g_return_if_fail(chat != NULL); | |
9285 | 1100 g_return_if_fail(GAIM_BLIST_NODE_IS_CHAT((GaimBlistNode *)chat)); |
1101 | |
1102 if (node == NULL) { | |
1103 if (group == NULL) { | |
1104 group = gaim_group_new(_("Chats")); | |
1105 gaim_blist_add_group(group, | |
5634 | 1106 gaim_blist_get_last_sibling(gaimbuddylist->root)); |
5234 | 1107 } |
1108 } else { | |
9285 | 1109 group = (GaimGroup*)node->parent; |
5234 | 1110 } |
1111 | |
1112 /* if we're moving to overtop of ourselves, do nothing */ | |
9285 | 1113 if (cnode == node) |
5234 | 1114 return; |
1115 | |
1116 if (cnode->parent) { | |
1117 /* This chat was already in the list and is | |
1118 * being moved. | |
1119 */ | |
6695 | 1120 ((GaimGroup *)cnode->parent)->totalsize--; |
5855 | 1121 if (gaim_account_is_connected(chat->account)) { |
6695 | 1122 ((GaimGroup *)cnode->parent)->online--; |
1123 ((GaimGroup *)cnode->parent)->currentsize--; | |
5287 | 1124 } |
9285 | 1125 if (cnode->next) |
5234 | 1126 cnode->next->prev = cnode->prev; |
9285 | 1127 if (cnode->prev) |
5234 | 1128 cnode->prev->next = cnode->next; |
9285 | 1129 if (cnode->parent->child == cnode) |
5234 | 1130 cnode->parent->child = cnode->next; |
1131 | |
1132 ops->remove(gaimbuddylist, cnode); | |
1133 | |
10704 | 1134 gaim_blist_schedule_save(); |
5234 | 1135 } |
1136 | |
9285 | 1137 if (node != NULL) { |
1138 if (node->next) | |
1139 node->next->prev = cnode; | |
1140 cnode->next = node->next; | |
1141 cnode->prev = node; | |
1142 cnode->parent = node->parent; | |
1143 node->next = cnode; | |
1144 ((GaimGroup *)node->parent)->totalsize++; | |
5855 | 1145 if (gaim_account_is_connected(chat->account)) { |
9285 | 1146 ((GaimGroup *)node->parent)->online++; |
1147 ((GaimGroup *)node->parent)->currentsize++; | |
5287 | 1148 } |
5234 | 1149 } else { |
9285 | 1150 if (((GaimBlistNode *)group)->child) |
1151 ((GaimBlistNode *)group)->child->prev = cnode; | |
1152 cnode->next = ((GaimBlistNode *)group)->child; | |
5634 | 1153 cnode->prev = NULL; |
9285 | 1154 ((GaimBlistNode *)group)->child = cnode; |
1155 cnode->parent = (GaimBlistNode *)group; | |
1156 group->totalsize++; | |
5855 | 1157 if (gaim_account_is_connected(chat->account)) { |
9285 | 1158 group->online++; |
1159 group->currentsize++; | |
5287 | 1160 } |
5234 | 1161 } |
1162 | |
10704 | 1163 gaim_blist_schedule_save(); |
9285 | 1164 |
1165 if (ops && ops->update) | |
1166 ops->update(gaimbuddylist, (GaimBlistNode *)cnode); | |
5234 | 1167 } |
1168 | |
7879 | 1169 void gaim_blist_add_buddy(GaimBuddy *buddy, GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
5228 | 1170 { |
6695 | 1171 GaimBlistNode *cnode, *bnode; |
1172 GaimGroup *g; | |
1173 GaimContact *c; | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1174 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
5247 | 1175 struct _gaim_hbuddy *hb; |
6695 | 1176 |
1177 g_return_if_fail(buddy != NULL); | |
6774 | 1178 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY((GaimBlistNode*)buddy)); |
6695 | 1179 |
1180 bnode = (GaimBlistNode *)buddy; | |
5228 | 1181 |
6695 | 1182 /* if we're moving to overtop of ourselves, do nothing */ |
9285 | 1183 if (bnode == node || (!node && bnode->parent && |
6695 | 1184 contact && bnode->parent == (GaimBlistNode*)contact |
1185 && bnode == bnode->parent->child)) | |
1186 return; | |
1187 | |
9285 | 1188 if (node && GAIM_BLIST_NODE_IS_BUDDY(node)) { |
6695 | 1189 c = (GaimContact*)node->parent; |
1190 g = (GaimGroup*)node->parent->parent; | |
9285 | 1191 } else if (contact) { |
6695 | 1192 c = contact; |
9285 | 1193 g = (GaimGroup *)((GaimBlistNode *)c)->parent; |
1194 } else { | |
1195 if (group) { | |
6695 | 1196 g = group; |
1197 } else { | |
5228 | 1198 g = gaim_group_new(_("Buddies")); |
5634 | 1199 gaim_blist_add_group(g, |
1200 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5228 | 1201 } |
6695 | 1202 c = gaim_contact_new(); |
1203 gaim_blist_add_contact(c, g, | |
1204 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
5228 | 1205 } |
1206 | |
6695 | 1207 cnode = (GaimBlistNode *)c; |
5228 | 1208 |
9285 | 1209 if (bnode->parent) { |
1210 if (GAIM_BUDDY_IS_ONLINE(buddy)) { | |
6695 | 1211 ((GaimContact*)bnode->parent)->online--; |
9285 | 1212 if (((GaimContact*)bnode->parent)->online == 0) |
6695 | 1213 ((GaimGroup*)bnode->parent->parent)->online--; |
1214 } | |
9285 | 1215 if (gaim_account_is_connected(buddy->account)) { |
6695 | 1216 ((GaimContact*)bnode->parent)->currentsize--; |
9285 | 1217 if (((GaimContact*)bnode->parent)->currentsize == 0) |
6695 | 1218 ((GaimGroup*)bnode->parent->parent)->currentsize--; |
1219 } | |
1220 ((GaimContact*)bnode->parent)->totalsize--; | |
1221 /* the group totalsize will be taken care of by remove_contact below */ | |
1222 | |
9285 | 1223 if (bnode->parent->parent != (GaimBlistNode*)g) |
6695 | 1224 serv_move_buddy(buddy, (GaimGroup *)bnode->parent->parent, g); |
5277 | 1225 |
9285 | 1226 if (bnode->next) |
5228 | 1227 bnode->next->prev = bnode->prev; |
9285 | 1228 if (bnode->prev) |
5228 | 1229 bnode->prev->next = bnode->next; |
9285 | 1230 if (bnode->parent->child == bnode) |
5228 | 1231 bnode->parent->child = bnode->next; |
1232 | |
1233 ops->remove(gaimbuddylist, bnode); | |
1234 | |
10704 | 1235 gaim_blist_schedule_save(); |
9285 | 1236 |
1237 if (bnode->parent->parent != (GaimBlistNode*)g) { | |
6742 | 1238 hb = g_new(struct _gaim_hbuddy, 1); |
7261 | 1239 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
6742 | 1240 hb->account = buddy->account; |
1241 hb->group = bnode->parent->parent; | |
6775 | 1242 g_hash_table_remove(gaimbuddylist->buddies, hb); |
7162 | 1243 g_free(hb->name); |
6742 | 1244 g_free(hb); |
1245 } | |
6794 | 1246 |
9285 | 1247 if (!bnode->parent->child) { |
6794 | 1248 gaim_blist_remove_contact((GaimContact*)bnode->parent); |
7003 | 1249 } else { |
10378 | 1250 gaim_contact_invalidate_priority_buddy((GaimContact*)bnode->parent); |
7003 | 1251 ops->update(gaimbuddylist, bnode->parent); |
1252 } | |
5228 | 1253 } |
1254 | |
9285 | 1255 if (node && GAIM_BLIST_NODE_IS_BUDDY(node)) { |
1256 if (node->next) | |
6695 | 1257 node->next->prev = bnode; |
1258 bnode->next = node->next; | |
1259 bnode->prev = node; | |
1260 bnode->parent = node->parent; | |
1261 node->next = bnode; | |
5228 | 1262 } else { |
9285 | 1263 if (cnode->child) |
6695 | 1264 cnode->child->prev = bnode; |
1265 bnode->prev = NULL; | |
1266 bnode->next = cnode->child; | |
1267 cnode->child = bnode; | |
1268 bnode->parent = cnode; | |
5228 | 1269 } |
1270 | |
9285 | 1271 if (GAIM_BUDDY_IS_ONLINE(buddy)) { |
6695 | 1272 ((GaimContact*)bnode->parent)->online++; |
9285 | 1273 if (((GaimContact*)bnode->parent)->online == 1) |
6695 | 1274 ((GaimGroup*)bnode->parent->parent)->online++; |
1275 } | |
9285 | 1276 if (gaim_account_is_connected(buddy->account)) { |
6695 | 1277 ((GaimContact*)bnode->parent)->currentsize++; |
9285 | 1278 if (((GaimContact*)bnode->parent)->currentsize == 1) |
6695 | 1279 ((GaimGroup*)bnode->parent->parent)->currentsize++; |
1280 } | |
1281 ((GaimContact*)bnode->parent)->totalsize++; | |
1282 | |
6742 | 1283 hb = g_new(struct _gaim_hbuddy, 1); |
7261 | 1284 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
5247 | 1285 hb->account = buddy->account; |
6695 | 1286 hb->group = ((GaimBlistNode*)buddy)->parent->parent; |
5247 | 1287 |
6742 | 1288 g_hash_table_replace(gaimbuddylist->buddies, hb, buddy); |
5247 | 1289 |
10378 | 1290 gaim_contact_invalidate_priority_buddy(gaim_buddy_get_contact(buddy)); |
9285 | 1291 |
10704 | 1292 gaim_blist_schedule_save(); |
9285 | 1293 |
1294 if (ops && ops->update) | |
5228 | 1295 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); |
1296 } | |
1297 | |
6695 | 1298 GaimContact *gaim_contact_new() |
5228 | 1299 { |
9285 | 1300 GaimBlistUiOps *ops = gaim_blist_get_ui_ops(); |
1301 | |
1302 GaimContact *contact = g_new0(GaimContact, 1); | |
1303 contact->totalsize = 0; | |
1304 contact->currentsize = 0; | |
1305 contact->online = 0; | |
1306 gaim_blist_node_initialize_settings((GaimBlistNode *)contact); | |
1307 ((GaimBlistNode *)contact)->type = GAIM_BLIST_CONTACT_NODE; | |
1308 | |
1309 if (ops && ops->new_node) | |
1310 ops->new_node((GaimBlistNode *)contact); | |
1311 | |
1312 return contact; | |
6695 | 1313 } |
1314 | |
9285 | 1315 void gaim_contact_set_alias(GaimContact *contact, const char *alias) |
6755 | 1316 { |
7245 | 1317 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
1318 | |
6755 | 1319 g_return_if_fail(contact != NULL); |
1320 | |
9285 | 1321 if (contact->alias != NULL) |
6755 | 1322 g_free(contact->alias); |
1323 | |
9285 | 1324 if ((alias != NULL) && (*alias != '\0')) |
7245 | 1325 contact->alias = g_strdup(alias); |
1326 else | |
1327 contact->alias = NULL; | |
1328 | |
10704 | 1329 gaim_blist_schedule_save(); |
9285 | 1330 |
1331 if (ops && ops->update) | |
7245 | 1332 ops->update(gaimbuddylist, (GaimBlistNode*)contact); |
6755 | 1333 } |
1334 | |
1335 const char *gaim_contact_get_alias(GaimContact* contact) | |
1336 { | |
9285 | 1337 g_return_val_if_fail(contact != NULL, NULL); |
1338 | |
1339 if (contact->alias) | |
7312 | 1340 return contact->alias; |
1341 | |
10378 | 1342 return gaim_buddy_get_alias(gaim_contact_get_priority_buddy(contact)); |
6755 | 1343 } |
1344 | |
9787 | 1345 gboolean gaim_contact_on_account(GaimContact *c, GaimAccount *account) |
1346 { | |
1347 GaimBlistNode *bnode, *cnode = (GaimBlistNode *) c; | |
1348 | |
1349 g_return_val_if_fail(c != NULL, FALSE); | |
1350 g_return_val_if_fail(account != NULL, FALSE); | |
1351 | |
1352 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
1353 GaimBuddy *buddy; | |
1354 | |
1355 if (! GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
1356 continue; | |
1357 | |
1358 buddy = (GaimBuddy *)bnode; | |
1359 if (buddy->account == account) | |
1360 return TRUE; | |
1361 } | |
1362 return FALSE; | |
1363 } | |
1364 | |
10428 | 1365 void gaim_contact_invalidate_priority_buddy(GaimContact *contact) |
1366 { | |
1367 g_return_if_fail(contact != NULL); | |
1368 | |
1369 contact->priority_valid = FALSE; | |
1370 } | |
1371 | |
6695 | 1372 GaimGroup *gaim_group_new(const char *name) |
1373 { | |
9285 | 1374 GaimBlistUiOps *ops = gaim_blist_get_ui_ops(); |
1375 GaimGroup *group = gaim_find_group(name); | |
1376 | |
1377 if (group != NULL) | |
1378 return group; | |
1379 | |
1380 group = g_new0(GaimGroup, 1); | |
1381 group->name = g_strdup(name); | |
1382 group->totalsize = 0; | |
1383 group->currentsize = 0; | |
1384 group->online = 0; | |
1385 gaim_blist_node_initialize_settings((GaimBlistNode *)group); | |
1386 ((GaimBlistNode *)group)->type = GAIM_BLIST_GROUP_NODE; | |
1387 | |
1388 if (ops && ops->new_node) | |
1389 ops->new_node((GaimBlistNode *)group); | |
1390 | |
1391 return group; | |
5228 | 1392 } |
1393 | |
6695 | 1394 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
1395 { | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1396 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6695 | 1397 GaimGroup *g; |
6742 | 1398 GaimBlistNode *gnode, *cnode, *bnode; |
6695 | 1399 |
6774 | 1400 g_return_if_fail(contact != NULL); |
1401 g_return_if_fail(GAIM_BLIST_NODE_IS_CONTACT((GaimBlistNode*)contact)); | |
6695 | 1402 |
9285 | 1403 if ((GaimBlistNode*)contact == node) |
6975 | 1404 return; |
1405 | |
9285 | 1406 if (node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
6695 | 1407 GAIM_BLIST_NODE_IS_CHAT(node))) |
1408 g = (GaimGroup*)node->parent; | |
9285 | 1409 else if (group) |
6695 | 1410 g = group; |
1411 else { | |
1412 g = gaim_group_new(_("Buddies")); | |
1413 gaim_blist_add_group(g, | |
1414 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
1415 } | |
1416 | |
1417 gnode = (GaimBlistNode*)g; | |
1418 cnode = (GaimBlistNode*)contact; | |
1419 | |
9285 | 1420 if (cnode->parent) { |
1421 if (cnode->parent->child == cnode) | |
6731 | 1422 cnode->parent->child = cnode->next; |
9285 | 1423 if (cnode->prev) |
6695 | 1424 cnode->prev->next = cnode->next; |
9285 | 1425 if (cnode->next) |
6695 | 1426 cnode->next->prev = cnode->prev; |
1427 | |
9285 | 1428 if (cnode->parent != gnode) { |
9928 | 1429 bnode = cnode->child; |
1430 while (bnode) { | |
1431 GaimBlistNode *next_bnode = bnode->next; | |
6742 | 1432 GaimBuddy *b = (GaimBuddy*)bnode; |
1433 | |
1434 struct _gaim_hbuddy *hb = g_new(struct _gaim_hbuddy, 1); | |
7261 | 1435 hb->name = g_strdup(gaim_normalize(b->account, b->name)); |
6742 | 1436 hb->account = b->account; |
1437 hb->group = cnode->parent; | |
1438 | |
6776 | 1439 g_hash_table_remove(gaimbuddylist->buddies, hb); |
6742 | 1440 |
9285 | 1441 if (!gaim_find_buddy_in_group(b->account, b->name, g)) { |
8328 | 1442 hb->group = gnode; |
1443 g_hash_table_replace(gaimbuddylist->buddies, hb, b); | |
1444 | |
9285 | 1445 if (b->account->gc) |
1446 serv_move_buddy(b, (GaimGroup *)cnode->parent, g); | |
8328 | 1447 } else { |
9928 | 1448 gboolean empty_contact = FALSE; |
1449 | |
8328 | 1450 /* this buddy already exists in the group, so we're |
1451 * gonna delete it instead */ | |
1452 g_free(hb->name); | |
1453 g_free(hb); | |
9285 | 1454 if (b->account->gc) |
1455 serv_remove_buddy(b->account->gc, b, (GaimGroup *)cnode->parent); | |
1456 | |
1457 if (!cnode->child->next) | |
8328 | 1458 empty_contact = TRUE; |
1459 gaim_blist_remove_buddy(b); | |
9928 | 1460 |
1461 /** in gaim_blist_remove_buddy(), if the last buddy in a | |
1462 * contact is removed, the contact is cleaned up and | |
1463 * g_free'd, so we mustn't try to reference bnode->next */ | |
1464 if (empty_contact) | |
1465 return; | |
8328 | 1466 } |
9928 | 1467 bnode = next_bnode; |
6742 | 1468 } |
1469 } | |
9928 | 1470 |
1471 if (contact->online > 0) | |
1472 ((GaimGroup*)cnode->parent)->online--; | |
1473 if (contact->currentsize > 0) | |
1474 ((GaimGroup*)cnode->parent)->currentsize--; | |
1475 ((GaimGroup*)cnode->parent)->totalsize--; | |
1476 | |
1477 ops->remove(gaimbuddylist, cnode); | |
1478 | |
10704 | 1479 gaim_blist_schedule_save(); |
6695 | 1480 } |
1481 | |
9285 | 1482 if (node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
6695 | 1483 GAIM_BLIST_NODE_IS_CHAT(node))) { |
9285 | 1484 if (node->next) |
6695 | 1485 node->next->prev = cnode; |
1486 cnode->next = node->next; | |
1487 cnode->prev = node; | |
1488 cnode->parent = node->parent; | |
1489 node->next = cnode; | |
1490 } else { | |
9285 | 1491 if (gnode->child) |
6695 | 1492 gnode->child->prev = cnode; |
1493 cnode->prev = NULL; | |
1494 cnode->next = gnode->child; | |
1495 gnode->child = cnode; | |
1496 cnode->parent = gnode; | |
1497 } | |
1498 | |
9285 | 1499 if (contact->online > 0) |
6695 | 1500 g->online++; |
9285 | 1501 if (contact->currentsize > 0) |
6695 | 1502 g->currentsize++; |
1503 g->totalsize++; | |
1504 | |
10704 | 1505 gaim_blist_schedule_save(); |
9285 | 1506 |
1507 if (ops && cnode->child) | |
6695 | 1508 ops->update(gaimbuddylist, cnode); |
6775 | 1509 |
9285 | 1510 for (bnode = cnode->child; bnode; bnode = bnode->next) |
6775 | 1511 ops->update(gaimbuddylist, bnode); |
6695 | 1512 } |
1513 | |
7246 | 1514 void gaim_blist_merge_contact(GaimContact *source, GaimBlistNode *node) |
6965 | 1515 { |
1516 GaimBlistNode *sourcenode = (GaimBlistNode*)source; | |
7246 | 1517 GaimBlistNode *targetnode; |
1518 GaimBlistNode *prev, *cur, *next; | |
1519 GaimContact *target; | |
1520 | |
9285 | 1521 g_return_if_fail(source != NULL); |
1522 g_return_if_fail(node != NULL); | |
1523 | |
1524 if (GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
1525 target = (GaimContact *)node; | |
7246 | 1526 prev = gaim_blist_get_last_child(node); |
9285 | 1527 } else if (GAIM_BLIST_NODE_IS_BUDDY(node)) { |
1528 target = (GaimContact *)node->parent; | |
7246 | 1529 prev = node; |
1530 } else { | |
6965 | 1531 return; |
7246 | 1532 } |
1533 | |
9285 | 1534 if (source == target || !target) |
7246 | 1535 return; |
1536 | |
9285 | 1537 targetnode = (GaimBlistNode *)target; |
7246 | 1538 next = sourcenode->child; |
1539 | |
9285 | 1540 while (next) { |
7246 | 1541 cur = next; |
1542 next = cur->next; | |
9285 | 1543 if (GAIM_BLIST_NODE_IS_BUDDY(cur)) { |
1544 gaim_blist_add_buddy((GaimBuddy *)cur, target, NULL, prev); | |
7246 | 1545 prev = cur; |
1546 } | |
6965 | 1547 } |
1548 } | |
1549 | |
9285 | 1550 void gaim_blist_add_group(GaimGroup *group, GaimBlistNode *node) |
5228 | 1551 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1552 GaimBlistUiOps *ops; |
5228 | 1553 GaimBlistNode *gnode = (GaimBlistNode*)group; |
1554 | |
6774 | 1555 g_return_if_fail(group != NULL); |
9285 | 1556 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP((GaimBlistNode *)group)); |
1557 | |
5228 | 1558 ops = gaimbuddylist->ui_ops; |
1559 | |
1560 if (!gaimbuddylist->root) { | |
1561 gaimbuddylist->root = gnode; | |
1562 return; | |
1563 } | |
1564 | |
1565 /* if we're moving to overtop of ourselves, do nothing */ | |
9285 | 1566 if (gnode == node) |
5228 | 1567 return; |
1568 | |
1569 if (gaim_find_group(group->name)) { | |
1570 /* This is just being moved */ | |
1571 | |
9285 | 1572 ops->remove(gaimbuddylist, (GaimBlistNode *)group); |
1573 | |
1574 if (gnode == gaimbuddylist->root) | |
5228 | 1575 gaimbuddylist->root = gnode->next; |
9285 | 1576 if (gnode->prev) |
5228 | 1577 gnode->prev->next = gnode->next; |
9285 | 1578 if (gnode->next) |
5228 | 1579 gnode->next->prev = gnode->prev; |
1580 } | |
1581 | |
6695 | 1582 if (node && GAIM_BLIST_NODE_IS_GROUP(node)) { |
5634 | 1583 gnode->next = node->next; |
1584 gnode->prev = node; | |
9285 | 1585 if (node->next) |
5634 | 1586 node->next->prev = gnode; |
1587 node->next = gnode; | |
1588 } else { | |
9285 | 1589 if (gaimbuddylist->root) |
6807 | 1590 gaimbuddylist->root->prev = gnode; |
5634 | 1591 gnode->next = gaimbuddylist->root; |
1592 gnode->prev = NULL; | |
1593 gaimbuddylist->root = gnode; | |
1594 } | |
1595 | |
10704 | 1596 gaim_blist_schedule_save(); |
9285 | 1597 |
1598 if (ops && ops->update) { | |
5228 | 1599 ops->update(gaimbuddylist, gnode); |
9285 | 1600 for (node = gnode->child; node; node = node->next) |
5228 | 1601 ops->update(gaimbuddylist, node); |
1602 } | |
1603 } | |
1604 | |
9285 | 1605 void gaim_blist_remove_contact(GaimContact *contact) |
5228 | 1606 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1607 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 1608 GaimBlistNode *node, *gnode; |
1609 | |
1610 g_return_if_fail(contact != NULL); | |
1611 | |
1612 node = (GaimBlistNode *)contact; | |
1613 gnode = node->parent; | |
1614 | |
1615 if (node->child) { | |
1616 /* | |
1617 * If this contact has children then remove them. When the last | |
10166 | 1618 * buddy is removed from the contact, the contact is automatically |
1619 * deleted. | |
9285 | 1620 */ |
10166 | 1621 while (node->child->next) { |
9285 | 1622 gaim_blist_remove_buddy((GaimBuddy*)node->child); |
6695 | 1623 } |
10166 | 1624 /* |
1625 * Remove the last buddy and trigger the deletion of the contact. | |
1626 * It would probably be cleaner if contact-deletion was done after | |
1627 * a timeout? Or if it had to be done manually, like below? | |
1628 */ | |
1629 gaim_blist_remove_buddy((GaimBuddy*)node->child); | |
6695 | 1630 } else { |
9285 | 1631 /* Remove the node from its parent */ |
1632 if (gnode->child == node) | |
1633 gnode->child = node->next; | |
1634 if (node->prev) | |
1635 node->prev->next = node->next; | |
1636 if (node->next) | |
1637 node->next->prev = node->prev; | |
1638 | |
10704 | 1639 gaim_blist_schedule_save(); |
9285 | 1640 |
1641 /* Update the UI */ | |
1642 if (ops && ops->remove) | |
1643 ops->remove(gaimbuddylist, node); | |
1644 | |
1645 /* Delete the node */ | |
10504 | 1646 g_hash_table_destroy(contact->node.settings); |
6695 | 1647 g_free(contact); |
1648 } | |
1649 } | |
1650 | |
9285 | 1651 void gaim_blist_remove_buddy(GaimBuddy *buddy) |
6695 | 1652 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1653 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 1654 GaimBlistNode *node, *cnode, *gnode; |
1655 GaimContact *contact; | |
6695 | 1656 GaimGroup *group; |
6742 | 1657 struct _gaim_hbuddy hb; |
5228 | 1658 |
9285 | 1659 g_return_if_fail(buddy != NULL); |
1660 | |
1661 node = (GaimBlistNode *)buddy; | |
6695 | 1662 cnode = node->parent; |
9285 | 1663 gnode = cnode->parent; |
1664 contact = (GaimContact *)cnode; | |
1665 group = (GaimGroup *)gnode; | |
1666 | |
1667 /* Remove the node from its parent */ | |
5228 | 1668 if (node->prev) |
1669 node->prev->next = node->next; | |
1670 if (node->next) | |
1671 node->next->prev = node->prev; | |
9285 | 1672 if (cnode->child == node) |
6695 | 1673 cnode->child = node->next; |
9285 | 1674 |
1675 /* Adjust size counts */ | |
1676 if (GAIM_BUDDY_IS_ONLINE(buddy)) { | |
1677 contact->online--; | |
1678 if (contact->online == 0) | |
1679 group->online--; | |
6695 | 1680 } |
9285 | 1681 if (gaim_account_is_connected(buddy->account)) { |
1682 contact->currentsize--; | |
1683 if (contact->currentsize == 0) | |
1684 group->currentsize--; | |
8194 | 1685 } |
9285 | 1686 contact->totalsize--; |
1687 | |
10704 | 1688 gaim_blist_schedule_save(); |
9285 | 1689 |
1690 /* Re-sort the contact */ | |
1691 if (contact->priority == buddy) { | |
10378 | 1692 gaim_contact_invalidate_priority_buddy(contact); |
9285 | 1693 if (ops && ops->update) |
1694 ops->update(gaimbuddylist, cnode); | |
1695 } | |
1696 | |
1697 /* Remove this buddy from the buddies hash table */ | |
7261 | 1698 hb.name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
5247 | 1699 hb.account = buddy->account; |
6695 | 1700 hb.group = ((GaimBlistNode*)buddy)->parent->parent; |
6742 | 1701 g_hash_table_remove(gaimbuddylist->buddies, &hb); |
7162 | 1702 g_free(hb.name); |
5247 | 1703 |
9285 | 1704 /* Update the UI */ |
1705 if (ops && ops->remove) | |
1706 ops->remove(gaimbuddylist, node); | |
1707 | |
1708 /* Delete the node */ | |
1709 if (buddy->timer > 0) | |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
1710 gaim_timeout_remove(buddy->timer); |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1711 if (buddy->icon != NULL) |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1712 gaim_buddy_icon_unref(buddy->icon); |
7693 | 1713 g_hash_table_destroy(buddy->node.settings); |
9944 | 1714 gaim_presence_remove_buddy(buddy->presence, buddy); |
1715 gaim_presence_destroy(buddy->presence); | |
5228 | 1716 g_free(buddy->name); |
1717 g_free(buddy->alias); | |
10504 | 1718 g_free(buddy->server_alias); |
5228 | 1719 g_free(buddy); |
6755 | 1720 |
9285 | 1721 /* If the contact is empty then remove it */ |
1722 if (!cnode->child) | |
1723 gaim_blist_remove_contact(contact); | |
5228 | 1724 } |
1725 | |
9285 | 1726 void gaim_blist_remove_chat(GaimChat *chat) |
5234 | 1727 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1728 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 1729 GaimBlistNode *node, *gnode; |
6695 | 1730 GaimGroup *group; |
5234 | 1731 |
9285 | 1732 g_return_if_fail(chat != NULL); |
1733 | |
1734 node = (GaimBlistNode *)chat; | |
5234 | 1735 gnode = node->parent; |
6695 | 1736 group = (GaimGroup *)gnode; |
5234 | 1737 |
9285 | 1738 /* Remove the node from its parent */ |
1739 if (gnode->child == node) | |
5234 | 1740 gnode->child = node->next; |
1741 if (node->prev) | |
1742 node->prev->next = node->next; | |
1743 if (node->next) | |
1744 node->next->prev = node->prev; | |
9285 | 1745 |
1746 /* Adjust size counts */ | |
5855 | 1747 if (gaim_account_is_connected(chat->account)) { |
5394 | 1748 group->online--; |
9285 | 1749 group->currentsize--; |
5394 | 1750 } |
9285 | 1751 group->totalsize--; |
1752 | |
10704 | 1753 gaim_blist_schedule_save(); |
9285 | 1754 |
1755 /* Update the UI */ | |
1756 if (ops && ops->remove) | |
1757 ops->remove(gaimbuddylist, node); | |
1758 | |
1759 /* Delete the node */ | |
5234 | 1760 g_hash_table_destroy(chat->components); |
10504 | 1761 g_hash_table_destroy(chat->node.settings); |
5234 | 1762 g_free(chat->alias); |
1763 g_free(chat); | |
1764 } | |
1765 | |
9285 | 1766 void gaim_blist_remove_group(GaimGroup *group) |
5228 | 1767 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1768 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 1769 GaimBlistNode *node; |
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1770 GList *l; |
5228 | 1771 |
9285 | 1772 g_return_if_fail(group != NULL); |
1773 | |
1774 node = (GaimBlistNode *)group; | |
1775 | |
1776 /* Make sure the group is empty */ | |
1777 if (node->child) { | |
5228 | 1778 char *buf; |
1779 int count = 0; | |
9285 | 1780 GaimBlistNode *child; |
1781 | |
1782 for (child = node->child; child != NULL; child = child->next) | |
5228 | 1783 count++; |
1784 | |
6308 | 1785 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed " |
1786 "because its account was not logged in." | |
1787 " This buddy and the group were not " | |
1788 "removed.\n", | |
1789 "%d buddies from group %s were not " | |
1790 "removed because their accounts were " | |
6336 | 1791 "not logged in. These buddies and " |
1792 "the group were not removed.\n", count), | |
6308 | 1793 count, group->name); |
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1794 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); |
5228 | 1795 g_free(buf); |
1796 return; | |
1797 } | |
1798 | |
9285 | 1799 /* Remove the node from its parent */ |
1800 if (gaimbuddylist->root == node) | |
5228 | 1801 gaimbuddylist->root = node->next; |
1802 if (node->prev) | |
1803 node->prev->next = node->next; | |
1804 if (node->next) | |
1805 node->next->prev = node->prev; | |
1806 | |
10704 | 1807 gaim_blist_schedule_save(); |
9285 | 1808 |
1809 /* Update the UI */ | |
1810 if (ops && ops->remove) | |
1811 ops->remove(gaimbuddylist, node); | |
1812 | |
1813 /* Remove the group from all accounts that are online */ | |
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1814 for (l = gaim_connections_get_all(); l != NULL; l = l->next) |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1815 { |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1816 GaimConnection *gc = (GaimConnection *)l->data; |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1817 |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1818 if (gaim_connection_get_state(gc) == GAIM_CONNECTED) |
9285 | 1819 serv_remove_group(gc, group); |
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1820 } |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1821 |
9285 | 1822 /* Delete the node */ |
10504 | 1823 g_hash_table_destroy(group->node.settings); |
5228 | 1824 g_free(group->name); |
1825 g_free(group); | |
1826 } | |
1827 | |
9285 | 1828 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact) |
1829 { | |
1830 g_return_val_if_fail(contact != NULL, NULL); | |
1831 | |
10378 | 1832 if (!contact->priority_valid) |
1833 gaim_contact_compute_priority_buddy(contact); | |
1834 | |
6843 | 1835 return contact->priority; |
6695 | 1836 } |
1837 | |
9620 | 1838 const char *gaim_buddy_get_alias_only(GaimBuddy *buddy) |
9285 | 1839 { |
1840 g_return_val_if_fail(buddy != NULL, NULL); | |
1841 | |
1842 if ((buddy->alias != NULL) && (*buddy->alias != '\0')) { | |
1843 return buddy->alias; | |
1844 } else if ((buddy->server_alias != NULL) && | |
10389 | 1845 (*buddy->server_alias != '\0')) { |
9285 | 1846 |
1847 return buddy->server_alias; | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1848 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1849 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1850 return NULL; |
5228 | 1851 } |
1852 | |
9620 | 1853 |
1854 const char *gaim_buddy_get_contact_alias(GaimBuddy *buddy) | |
5228 | 1855 { |
9620 | 1856 GaimContact *c; |
1857 | |
1858 g_return_val_if_fail(buddy != NULL, NULL); | |
1859 | |
1860 /* Search for an alias for the buddy. In order of precedence: */ | |
1861 /* The buddy alias */ | |
1862 if (buddy->alias != NULL) | |
1863 return buddy->alias; | |
1864 | |
1865 /* The contact alias */ | |
1866 c = gaim_buddy_get_contact(buddy); | |
1867 if ((c != NULL) && (c->alias != NULL)) | |
1868 return c->alias; | |
1869 | |
10349 | 1870 /* The server alias */ |
1871 if ((buddy->server_alias) && (*buddy->server_alias)) | |
9620 | 1872 return buddy->server_alias; |
1873 | |
1874 /* The buddy's user name (i.e. no alias) */ | |
1875 return buddy->name; | |
5228 | 1876 } |
1877 | |
9620 | 1878 |
1879 const char *gaim_buddy_get_alias(GaimBuddy *buddy) | |
1880 { | |
1881 g_return_val_if_fail(buddy != NULL, NULL); | |
1882 | |
1883 /* Search for an alias for the buddy. In order of precedence: */ | |
1884 /* The buddy alias */ | |
1885 if (buddy->alias != NULL) | |
1886 return buddy->alias; | |
1887 | |
1888 /* The server alias, if preferences say so */ | |
10389 | 1889 if ((buddy->server_alias) && (*buddy->server_alias)) |
9620 | 1890 return buddy->server_alias; |
1891 | |
1892 /* The buddy's user name (i.e. no alias) */ | |
1893 return buddy->name; | |
1894 } | |
1895 | |
10349 | 1896 const char *gaim_buddy_get_local_alias(GaimBuddy *buddy) |
1897 { | |
1898 GaimContact *c; | |
1899 | |
1900 g_return_val_if_fail(buddy != NULL, NULL); | |
1901 | |
1902 /* Search for an alias for the buddy. In order of precedence: */ | |
1903 /* The buddy alias */ | |
1904 if (buddy->alias != NULL) | |
1905 return buddy->alias; | |
1906 | |
1907 /* The contact alias */ | |
1908 c = gaim_buddy_get_contact(buddy); | |
1909 if ((c != NULL) && (c->alias != NULL)) | |
1910 return c->alias; | |
1911 | |
1912 /* The buddy's user name (i.e. no alias) */ | |
1913 return buddy->name; | |
1914 } | |
9620 | 1915 |
7125 | 1916 const char *gaim_chat_get_name(GaimChat *chat) |
6744 | 1917 { |
9285 | 1918 struct proto_chat_entry *pce; |
1919 GList *parts, *tmp; | |
1920 char *ret; | |
1921 | |
1922 g_return_val_if_fail(chat != NULL, NULL); | |
1923 | |
1924 if ((chat->alias != NULL) && (*chat->alias != '\0')) | |
6744 | 1925 return chat->alias; |
9285 | 1926 |
1927 parts = GAIM_PLUGIN_PROTOCOL_INFO(chat->account->gc->prpl)->chat_info(chat->account->gc); | |
1928 pce = parts->data; | |
1929 ret = g_hash_table_lookup(chat->components, pce->identifier); | |
1930 for (tmp = parts; tmp; tmp = tmp->next) | |
1931 g_free(tmp->data); | |
1932 g_list_free(parts); | |
1933 | |
1934 return ret; | |
6744 | 1935 } |
1936 | |
6695 | 1937 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name) |
5228 | 1938 { |
6695 | 1939 GaimBuddy *buddy; |
5247 | 1940 struct _gaim_hbuddy hb; |
5758 | 1941 GaimBlistNode *group; |
5228 | 1942 |
9285 | 1943 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
1944 g_return_val_if_fail(account != NULL, NULL); | |
1945 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
5228 | 1946 |
7429 | 1947 hb.account = account; |
7261 | 1948 hb.name = g_strdup(gaim_normalize(account, name)); |
7429 | 1949 |
9285 | 1950 for (group = gaimbuddylist->root; group; group = group->next) { |
5758 | 1951 hb.group = group; |
7162 | 1952 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb))) { |
1953 g_free(hb.name); | |
5758 | 1954 return buddy; |
7162 | 1955 } |
5758 | 1956 } |
7162 | 1957 g_free(hb.name); |
9285 | 1958 |
5758 | 1959 return NULL; |
5228 | 1960 } |
1961 | |
6872 | 1962 GaimBuddy *gaim_find_buddy_in_group(GaimAccount *account, const char *name, |
1963 GaimGroup *group) | |
1964 { | |
1965 struct _gaim_hbuddy hb; | |
7162 | 1966 GaimBuddy *ret; |
6872 | 1967 |
9285 | 1968 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
1969 g_return_val_if_fail(account != NULL, NULL); | |
1970 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
6872 | 1971 |
7261 | 1972 hb.name = g_strdup(gaim_normalize(account, name)); |
6872 | 1973 hb.account = account; |
1974 hb.group = (GaimBlistNode*)group; | |
1975 | |
7162 | 1976 ret = g_hash_table_lookup(gaimbuddylist->buddies, &hb); |
1977 g_free(hb.name); | |
9285 | 1978 |
7162 | 1979 return ret; |
6872 | 1980 } |
1981 | |
6245 | 1982 GSList *gaim_find_buddies(GaimAccount *account, const char *name) |
1983 { | |
1984 struct buddy *buddy; | |
1985 struct _gaim_hbuddy hb; | |
9285 | 1986 GaimBlistNode *node; |
6245 | 1987 GSList *ret = NULL; |
1988 | |
9285 | 1989 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
1990 g_return_val_if_fail(account != NULL, NULL); | |
1991 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
6245 | 1992 |
7261 | 1993 hb.name = g_strdup(gaim_normalize(account, name)); |
6245 | 1994 hb.account = account; |
1995 | |
9285 | 1996 for (node = gaimbuddylist->root; node != NULL; node = node->next) { |
1997 hb.group = node; | |
6245 | 1998 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) |
1999 ret = g_slist_append(ret, buddy); | |
2000 } | |
7162 | 2001 g_free(hb.name); |
9285 | 2002 |
6245 | 2003 return ret; |
2004 } | |
2005 | |
6695 | 2006 GaimGroup *gaim_find_group(const char *name) |
5228 | 2007 { |
2008 GaimBlistNode *node; | |
9285 | 2009 |
2010 g_return_val_if_fail(gaimbuddylist != NULL, NULL); | |
2011 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
2012 | |
2013 for (node = gaimbuddylist->root; node != NULL; node = node->next) { | |
6695 | 2014 if (!strcmp(((GaimGroup *)node)->name, name)) |
2015 return (GaimGroup *)node; | |
5228 | 2016 } |
9285 | 2017 |
5228 | 2018 return NULL; |
2019 } | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2020 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2021 GaimChat * |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2022 gaim_blist_find_chat(GaimAccount *account, const char *name) |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2023 { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2024 char *chat_name; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2025 GaimChat *chat; |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2026 GaimPlugin *prpl; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2027 GaimPluginProtocolInfo *prpl_info = NULL; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2028 struct proto_chat_entry *pce; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2029 GaimBlistNode *node, *group; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2030 GList *parts; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2031 |
9285 | 2032 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
2033 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
2034 | |
2035 if (!gaim_account_is_connected(account)) | |
7970 | 2036 return NULL; |
2037 | |
7999 | 2038 prpl = gaim_find_prpl(gaim_account_get_protocol_id(account)); |
2039 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
2040 | |
9285 | 2041 if (prpl_info->find_blist_chat != NULL) |
7999 | 2042 return prpl_info->find_blist_chat(account, name); |
2043 | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2044 for (group = gaimbuddylist->root; group != NULL; group = group->next) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2045 for (node = group->child; node != NULL; node = node->next) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2046 if (GAIM_BLIST_NODE_IS_CHAT(node)) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2047 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2048 chat = (GaimChat*)node; |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2049 |
9285 | 2050 if (account != chat->account) |
7970 | 2051 continue; |
2052 | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2053 parts = prpl_info->chat_info( |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2054 gaim_account_get_connection(chat->account)); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2055 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2056 pce = parts->data; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2057 chat_name = g_hash_table_lookup(chat->components, |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2058 pce->identifier); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2059 |
9153 | 2060 if (chat->account == account && chat_name != NULL && |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2061 name != NULL && !strcmp(chat_name, name)) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2062 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2063 return chat; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2064 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2065 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2066 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2067 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2068 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2069 return NULL; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2070 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2071 |
6695 | 2072 GaimGroup * |
7125 | 2073 gaim_chat_get_group(GaimChat *chat) |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2074 { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2075 g_return_val_if_fail(chat != NULL, NULL); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2076 |
6695 | 2077 return (GaimGroup *)(((GaimBlistNode *)chat)->parent); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2078 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2079 |
9285 | 2080 GaimContact *gaim_buddy_get_contact(GaimBuddy *buddy) |
2081 { | |
2082 g_return_val_if_fail(buddy != NULL, NULL); | |
2083 | |
2084 return (GaimContact*)((GaimBlistNode*)buddy)->parent; | |
2085 } | |
2086 | |
9949 | 2087 GaimPresence *gaim_buddy_get_presence(const GaimBuddy *buddy) |
2088 { | |
2089 g_return_val_if_fail(buddy != NULL, NULL); | |
2090 return buddy->presence; | |
2091 } | |
2092 | |
2093 | |
6695 | 2094 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy) |
5228 | 2095 { |
9285 | 2096 g_return_val_if_fail(buddy != NULL, NULL); |
6706
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
2097 |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
2098 if (((GaimBlistNode *)buddy)->parent == NULL) |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
2099 return NULL; |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
2100 |
6695 | 2101 return (GaimGroup *)(((GaimBlistNode*)buddy)->parent->parent); |
5228 | 2102 } |
2103 | |
9285 | 2104 GSList *gaim_group_get_accounts(GaimGroup *group) |
5228 | 2105 { |
2106 GSList *l = NULL; | |
6695 | 2107 GaimBlistNode *gnode, *cnode, *bnode; |
2108 | |
9285 | 2109 gnode = (GaimBlistNode *)group; |
2110 | |
2111 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
6695 | 2112 if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
9285 | 2113 if (!g_slist_find(l, ((GaimChat *)cnode)->account)) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2114 l = g_slist_append(l, ((GaimChat *)cnode)->account); |
9285 | 2115 } else if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { |
2116 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
2117 if (GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
2118 if (!g_slist_find(l, ((GaimBuddy *)bnode)->account)) | |
6695 | 2119 l = g_slist_append(l, ((GaimBuddy *)bnode)->account); |
2120 } | |
2121 } | |
2122 } | |
5228 | 2123 } |
6695 | 2124 |
5228 | 2125 return l; |
2126 } | |
2127 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2128 void gaim_blist_add_account(GaimAccount *account) |
5234 | 2129 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2130 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6695 | 2131 GaimBlistNode *gnode, *cnode, *bnode; |
5234 | 2132 |
9285 | 2133 g_return_if_fail(gaimbuddylist != NULL); |
2134 | |
2135 if (!ops || !ops->update) | |
6695 | 2136 return; |
2137 | |
9285 | 2138 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
2139 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5234 | 2140 continue; |
9285 | 2141 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
2142 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
6956 | 2143 gboolean recompute = FALSE; |
9285 | 2144 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
2145 if (GAIM_BLIST_NODE_IS_BUDDY(bnode) && | |
6695 | 2146 ((GaimBuddy*)bnode)->account == account) { |
6956 | 2147 recompute = TRUE; |
6695 | 2148 ((GaimContact*)cnode)->currentsize++; |
9285 | 2149 if (((GaimContact*)cnode)->currentsize == 1) |
6695 | 2150 ((GaimGroup*)gnode)->currentsize++; |
2151 ops->update(gaimbuddylist, bnode); | |
2152 } | |
2153 } | |
9285 | 2154 if (recompute || |
8960 | 2155 gaim_blist_node_get_bool(cnode, "show_offline")) { |
10378 | 2156 gaim_contact_invalidate_priority_buddy((GaimContact*)cnode); |
6956 | 2157 ops->update(gaimbuddylist, cnode); |
2158 } | |
9285 | 2159 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode) && |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2160 ((GaimChat*)cnode)->account == account) { |
6901 | 2161 ((GaimGroup *)gnode)->online++; |
2162 ((GaimGroup *)gnode)->currentsize++; | |
2163 ops->update(gaimbuddylist, cnode); | |
5234 | 2164 } |
2165 } | |
6695 | 2166 ops->update(gaimbuddylist, gnode); |
5234 | 2167 } |
2168 } | |
2169 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2170 void gaim_blist_remove_account(GaimAccount *account) |
5228 | 2171 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2172 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6695 | 2173 GaimBlistNode *gnode, *cnode, *bnode; |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2174 GaimBuddy *buddy; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2175 GaimChat *chat; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2176 GaimContact *contact; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2177 GaimGroup *group; |
5234 | 2178 |
9285 | 2179 g_return_if_fail(gaimbuddylist != NULL); |
2180 | |
2181 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
2182 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5234 | 2183 continue; |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2184 |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2185 group = (GaimGroup *)gnode; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2186 |
9285 | 2187 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
2188 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
10727 | 2189 gboolean recompute = FALSE; |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2190 contact = (GaimContact *)cnode; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2191 |
9285 | 2192 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
2193 if (!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
6695 | 2194 continue; |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2195 |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2196 buddy = (GaimBuddy *)bnode; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2197 if (account == buddy->account) { |
10557 | 2198 GaimPresence *presence; |
6957 | 2199 recompute = TRUE; |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2200 |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2201 presence = gaim_buddy_get_presence(buddy); |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2202 |
10728 | 2203 if(gaim_presence_is_online(presence)) { |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2204 contact->online--; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2205 if (contact->online == 0) |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2206 group->online--; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2207 |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2208 gaim_blist_node_set_int(&buddy->node, |
10475 | 2209 "last_seen", time(NULL)); |
6695 | 2210 } |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2211 |
10728 | 2212 contact->currentsize--; |
2213 if (contact->currentsize == 0) | |
2214 group->currentsize--; | |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2215 |
10557 | 2216 gaim_presence_set_status_active(presence, "offline", TRUE); |
2217 | |
9285 | 2218 if (ops && ops->remove) |
6695 | 2219 ops->remove(gaimbuddylist, bnode); |
2220 } | |
5234 | 2221 } |
9285 | 2222 if (recompute) { |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2223 gaim_contact_invalidate_priority_buddy(contact); |
9285 | 2224 if (ops && ops->update) |
6983 | 2225 ops->update(gaimbuddylist, cnode); |
2226 } | |
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2227 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2228 chat = (GaimChat *)cnode; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2229 |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2230 if(chat->account == account) { |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2231 group->currentsize--; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2232 group->online--; |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2233 |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2234 if (ops && ops->remove) |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2235 ops->remove(gaimbuddylist, cnode); |
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2236 } |
5228 | 2237 } |
2238 } | |
2239 } | |
2240 } | |
2241 | |
9285 | 2242 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account) |
2243 { | |
9787 | 2244 GaimBlistNode *cnode; |
9285 | 2245 for (cnode = ((GaimBlistNode *)g)->child; cnode; cnode = cnode->next) { |
2246 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
9787 | 2247 if(gaim_contact_on_account((GaimContact *) cnode, account)) |
2248 return TRUE; | |
9285 | 2249 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2250 GaimChat *chat = (GaimChat *)cnode; |
9285 | 2251 if ((!account && gaim_account_is_connected(chat->account)) |
6695 | 2252 || chat->account == account) |
2253 return TRUE; | |
2254 } | |
5228 | 2255 } |
2256 return FALSE; | |
2257 } | |
2258 | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2259 void |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2260 gaim_blist_request_add_buddy(GaimAccount *account, const char *username, |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2261 const char *group, const char *alias) |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2262 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2263 GaimBlistUiOps *ui_ops; |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2264 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2265 ui_ops = gaim_blist_get_ui_ops(); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2266 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2267 if (ui_ops != NULL && ui_ops->request_add_buddy != NULL) |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2268 ui_ops->request_add_buddy(account, username, group, alias); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2269 } |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2270 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2271 void |
9754 | 2272 gaim_blist_request_add_chat(GaimAccount *account, GaimGroup *group, |
2273 const char *alias, const char *name) | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2274 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2275 GaimBlistUiOps *ui_ops; |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2276 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2277 ui_ops = gaim_blist_get_ui_ops(); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2278 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2279 if (ui_ops != NULL && ui_ops->request_add_chat != NULL) |
9754 | 2280 ui_ops->request_add_chat(account, group, alias, name); |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2281 } |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2282 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2283 void |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2284 gaim_blist_request_add_group(void) |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2285 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2286 GaimBlistUiOps *ui_ops; |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2287 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2288 ui_ops = gaim_blist_get_ui_ops(); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2289 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2290 if (ui_ops != NULL && ui_ops->request_add_group != NULL) |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2291 ui_ops->request_add_group(); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2292 } |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2293 |
10430 | 2294 static void |
2295 gaim_blist_node_setting_free(gpointer data) | |
7693 | 2296 { |
10430 | 2297 GaimValue *value; |
2298 | |
2299 value = (GaimValue *)data; | |
2300 | |
2301 gaim_value_destroy(value); | |
7693 | 2302 } |
2303 | |
9285 | 2304 static void gaim_blist_node_initialize_settings(GaimBlistNode *node) |
7693 | 2305 { |
9285 | 2306 if (node->settings) |
5228 | 2307 return; |
7693 | 2308 |
2309 node->settings = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, | |
2310 (GDestroyNotify)gaim_blist_node_setting_free); | |
2311 } | |
2312 | |
2313 void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key) | |
2314 { | |
2315 g_return_if_fail(node != NULL); | |
2316 g_return_if_fail(node->settings != NULL); | |
2317 g_return_if_fail(key != NULL); | |
2318 | |
2319 g_hash_table_remove(node->settings, key); | |
9285 | 2320 |
10704 | 2321 gaim_blist_schedule_save(); |
5228 | 2322 } |
2323 | |
10430 | 2324 void |
10548 | 2325 gaim_blist_node_set_flags(GaimBlistNode *node, GaimBlistNodeFlags flags) |
2326 { | |
2327 g_return_if_fail(node != NULL); | |
2328 | |
2329 node->flags = flags; | |
2330 } | |
2331 | |
2332 GaimBlistNodeFlags | |
2333 gaim_blist_node_get_flags(GaimBlistNode *node) | |
2334 { | |
2335 g_return_val_if_fail(node != NULL, 0); | |
2336 | |
2337 return node->flags; | |
2338 } | |
2339 | |
2340 void | |
10430 | 2341 gaim_blist_node_set_bool(GaimBlistNode* node, const char *key, gboolean data) |
7693 | 2342 { |
10430 | 2343 GaimValue *value; |
7693 | 2344 |
2345 g_return_if_fail(node != NULL); | |
2346 g_return_if_fail(node->settings != NULL); | |
2347 g_return_if_fail(key != NULL); | |
2348 | |
10430 | 2349 value = gaim_value_new(GAIM_TYPE_BOOLEAN); |
2350 gaim_value_set_boolean(value, data); | |
2351 | |
2352 g_hash_table_replace(node->settings, g_strdup(key), value); | |
9285 | 2353 |
10704 | 2354 gaim_blist_schedule_save(); |
7693 | 2355 } |
2356 | |
10430 | 2357 gboolean |
2358 gaim_blist_node_get_bool(GaimBlistNode* node, const char *key) | |
7693 | 2359 { |
10430 | 2360 GaimValue *value; |
7693 | 2361 |
2362 g_return_val_if_fail(node != NULL, FALSE); | |
2363 g_return_val_if_fail(node->settings != NULL, FALSE); | |
2364 g_return_val_if_fail(key != NULL, FALSE); | |
2365 | |
10430 | 2366 value = g_hash_table_lookup(node->settings, key); |
2367 | |
2368 if (value == NULL) | |
7849 | 2369 return FALSE; |
2370 | |
10430 | 2371 g_return_val_if_fail(gaim_value_get_type(value) == GAIM_TYPE_BOOLEAN, FALSE); |
2372 | |
2373 return gaim_value_get_boolean(value); | |
5228 | 2374 } |
2375 | |
10430 | 2376 void |
2377 gaim_blist_node_set_int(GaimBlistNode* node, const char *key, int data) | |
7693 | 2378 { |
10430 | 2379 GaimValue *value; |
7693 | 2380 |
2381 g_return_if_fail(node != NULL); | |
2382 g_return_if_fail(node->settings != NULL); | |
2383 g_return_if_fail(key != NULL); | |
2384 | |
10430 | 2385 value = gaim_value_new(GAIM_TYPE_INT); |
2386 gaim_value_set_int(value, data); | |
2387 | |
2388 g_hash_table_replace(node->settings, g_strdup(key), value); | |
9285 | 2389 |
10704 | 2390 gaim_blist_schedule_save(); |
7693 | 2391 } |
2392 | |
10430 | 2393 int |
2394 gaim_blist_node_get_int(GaimBlistNode* node, const char *key) | |
7693 | 2395 { |
10430 | 2396 GaimValue *value; |
7693 | 2397 |
2398 g_return_val_if_fail(node != NULL, 0); | |
2399 g_return_val_if_fail(node->settings != NULL, 0); | |
2400 g_return_val_if_fail(key != NULL, 0); | |
2401 | |
10430 | 2402 value = g_hash_table_lookup(node->settings, key); |
2403 | |
2404 if (value == NULL) | |
7849 | 2405 return 0; |
2406 | |
10430 | 2407 g_return_val_if_fail(gaim_value_get_type(value) == GAIM_TYPE_INT, 0); |
2408 | |
2409 return gaim_value_get_int(value); | |
7693 | 2410 } |
2411 | |
10430 | 2412 void |
2413 gaim_blist_node_set_string(GaimBlistNode* node, const char *key, const char *data) | |
5906 | 2414 { |
10430 | 2415 GaimValue *value; |
7693 | 2416 |
2417 g_return_if_fail(node != NULL); | |
2418 g_return_if_fail(node->settings != NULL); | |
2419 g_return_if_fail(key != NULL); | |
2420 | |
10430 | 2421 value = gaim_value_new(GAIM_TYPE_STRING); |
2422 gaim_value_set_string(value, data); | |
2423 | |
2424 g_hash_table_replace(node->settings, g_strdup(key), value); | |
9285 | 2425 |
10704 | 2426 gaim_blist_schedule_save(); |
7693 | 2427 } |
2428 | |
10430 | 2429 const char * |
2430 gaim_blist_node_get_string(GaimBlistNode* node, const char *key) | |
7693 | 2431 { |
10430 | 2432 GaimValue *value; |
7693 | 2433 |
2434 g_return_val_if_fail(node != NULL, NULL); | |
2435 g_return_val_if_fail(node->settings != NULL, NULL); | |
2436 g_return_val_if_fail(key != NULL, NULL); | |
2437 | |
10430 | 2438 value = g_hash_table_lookup(node->settings, key); |
2439 | |
2440 if (value == NULL) | |
7849 | 2441 return NULL; |
2442 | |
10430 | 2443 g_return_val_if_fail(gaim_value_get_type(value) == GAIM_TYPE_STRING, NULL); |
2444 | |
2445 return gaim_value_get_string(value); | |
7693 | 2446 } |
2447 | |
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2448 GList * |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2449 gaim_blist_node_get_extended_menu(GaimBlistNode *n) |
7693 | 2450 { |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2451 GList *menu = NULL; |
9030 | 2452 |
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2453 g_return_val_if_fail(n != NULL, NULL); |
9030 | 2454 |
2455 gaim_signal_emit(gaim_blist_get_handle(), | |
2456 "blist-node-extended-menu", | |
2457 n, &menu); | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2458 return menu; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2459 } |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2460 |
9030 | 2461 GaimBlistNodeAction * |
2462 gaim_blist_node_action_new(char *label, | |
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2463 void (*callback)(GaimBlistNode *, gpointer), |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2464 gpointer data, GList *children) |
9030 | 2465 { |
2466 GaimBlistNodeAction *act = g_new0(GaimBlistNodeAction, 1); | |
2467 act->label = label; | |
2468 act->callback = callback; | |
2469 act->data = data; | |
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2470 act->children = children; |
9030 | 2471 return act; |
8952 | 2472 } |
2473 | |
9285 | 2474 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline) |
2475 { | |
2476 if (!group) | |
5228 | 2477 return 0; |
2478 | |
5277 | 2479 return offline ? group->totalsize : group->currentsize; |
5228 | 2480 } |
2481 | |
9285 | 2482 int gaim_blist_get_group_online_count(GaimGroup *group) |
2483 { | |
2484 if (!group) | |
5228 | 2485 return 0; |
2486 | |
5277 | 2487 return group->online; |
5228 | 2488 } |
2489 | |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2490 void |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2491 gaim_blist_set_ui_ops(GaimBlistUiOps *ops) |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2492 { |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2493 blist_ui_ops = ops; |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2494 } |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2495 |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2496 GaimBlistUiOps * |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2497 gaim_blist_get_ui_ops(void) |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2498 { |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2499 return blist_ui_ops; |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2500 } |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2501 |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2502 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2503 void * |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2504 gaim_blist_get_handle(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2505 { |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2506 static int handle; |
5228 | 2507 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2508 return &handle; |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2509 } |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2510 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2511 void |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2512 gaim_blist_init(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2513 { |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2514 void *handle = gaim_blist_get_handle(); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2515 |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2516 gaim_signal_register(handle, "buddy-away", |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2517 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2518 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2519 GAIM_SUBTYPE_BLIST_BUDDY)); |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2520 |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2521 gaim_signal_register(handle, "buddy-back", |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2522 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2523 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2524 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2525 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2526 gaim_signal_register(handle, "buddy-idle", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2527 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2528 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2529 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2530 gaim_signal_register(handle, "buddy-unidle", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2531 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2532 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2533 GAIM_SUBTYPE_BLIST_BUDDY)); |
9109
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2534 gaim_signal_register(handle, "buddy-idle-updated", |
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2535 gaim_marshal_VOID__POINTER, NULL, 1, |
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2536 gaim_value_new(GAIM_TYPE_SUBTYPE, |
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2537 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2538 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2539 gaim_signal_register(handle, "buddy-signed-on", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2540 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2541 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2542 GAIM_SUBTYPE_BLIST_BUDDY)); |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2543 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2544 gaim_signal_register(handle, "buddy-signed-off", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2545 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2546 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2547 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2548 |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2549 gaim_signal_register(handle, "update-idle", gaim_marshal_VOID, NULL, 0); |
9030 | 2550 |
2551 gaim_signal_register(handle, "blist-node-extended-menu", | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2552 gaim_marshal_VOID__POINTER_POINTER, NULL, 2, |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2553 gaim_value_new(GAIM_TYPE_SUBTYPE, |
9030 | 2554 GAIM_SUBTYPE_BLIST_NODE), |
8952 | 2555 gaim_value_new(GAIM_TYPE_BOXED, "GList **")); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2556 } |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2557 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2558 void |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2559 gaim_blist_uninit(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2560 { |
10428 | 2561 if (save_timer != 0) |
2562 { | |
2563 gaim_timeout_remove(save_timer); | |
2564 save_timer = 0; | |
9285 | 2565 gaim_blist_sync(); |
2566 } | |
2567 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2568 gaim_signals_unregister_by_instance(gaim_blist_get_handle()); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2569 } |