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