Mercurial > pidgin
annotate src/blist.c @ 11067:2eca9ed49469
[gaim-migrate @ 13048]
Modified configure.ac so that it rejects dbus builds with the dbus
library older than 0.34
Added a simple object registration system to the dbus implementation
so that it is possible to query object properties remotely (eg. give
me property "name" of buddy with id = 5).
committer: Tailor Script <tailor@pidgin.im>
| author | Piotr Zielinski <zielaj> |
|---|---|
| date | Thu, 07 Jul 2005 15:43:48 +0000 |
| parents | 3428ad6f5049 |
| children | 8b346ce5cdb8 |
| 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 | |
| 331 void | |
| 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); |
| 5228 | 661 |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
662 gbl->ui_ops = gaim_blist_get_ui_ops(); |
| 5228 | 663 |
| 6742 | 664 gbl->buddies = g_hash_table_new_full((GHashFunc)_gaim_blist_hbuddy_hash, |
| 665 (GEqualFunc)_gaim_blist_hbuddy_equal, | |
| 666 (GDestroyNotify)_gaim_blist_hbuddy_free_key, NULL); | |
| 5247 | 667 |
| 5228 | 668 if (gbl->ui_ops != NULL && gbl->ui_ops->new_list != NULL) |
| 669 gbl->ui_ops->new_list(gbl); | |
| 670 | |
| 671 return gbl; | |
| 672 } | |
| 673 | |
| 674 void | |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
675 gaim_set_blist(GaimBuddyList *list) |
| 5228 | 676 { |
| 677 gaimbuddylist = list; | |
| 678 } | |
| 679 | |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
680 GaimBuddyList * |
| 9285 | 681 gaim_get_blist() |
| 5228 | 682 { |
| 683 return gaimbuddylist; | |
| 684 } | |
| 685 | |
| 9285 | 686 void gaim_blist_show() |
| 5228 | 687 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
688 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 689 |
| 690 if (ops && ops->show) | |
| 5228 | 691 ops->show(gaimbuddylist); |
| 692 } | |
| 693 | |
| 694 void gaim_blist_destroy() | |
| 695 { | |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
696 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 697 |
|
8259
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8200
diff
changeset
|
698 gaim_debug(GAIM_DEBUG_INFO, "blist", "Destroying\n"); |
| 9285 | 699 |
| 700 if (ops && ops->destroy) | |
| 5228 | 701 ops->destroy(gaimbuddylist); |
| 702 } | |
| 703 | |
| 9285 | 704 void gaim_blist_set_visible(gboolean show) |
| 5228 | 705 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
706 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 707 |
| 708 if (ops && ops->set_visible) | |
| 5228 | 709 ops->set_visible(gaimbuddylist, show); |
| 710 } | |
| 711 | |
| 9285 | 712 static gboolean presence_update_timeout_cb(GaimBuddy *buddy) |
| 713 { | |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
714 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
|
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
715 GaimConversation *conv; |
|
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
716 |
| 9285 | 717 g_return_val_if_fail(buddy != NULL, FALSE); |
| 718 | |
| 719 if (buddy->present == GAIM_BUDDY_SIGNING_ON) { | |
| 5228 | 720 buddy->present = GAIM_BUDDY_ONLINE; |
| 9285 | 721 } else if (buddy->present == GAIM_BUDDY_SIGNING_OFF) { |
| 5228 | 722 buddy->present = GAIM_BUDDY_OFFLINE; |
| 6860 | 723 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online--; |
| 9285 | 724 if (((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 0) |
| 6860 | 725 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online--; |
| 5228 | 726 } |
| 727 | |
| 728 buddy->timer = 0; | |
| 729 | |
| 9285 | 730 if (ops && ops->update) |
| 5228 | 731 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); |
| 732 | |
| 10246 | 733 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, buddy->name, |
| 734 buddy->account); | |
|
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
735 if (conv) { |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
736 if (buddy->present == GAIM_BUDDY_ONLINE) |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
737 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_ONLINE); |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
738 else if (buddy->present == GAIM_BUDDY_OFFLINE) |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
739 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_OFFLINE); |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
740 } |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
741 |
| 5228 | 742 return FALSE; |
| 743 } | |
| 744 | |
| 10052 | 745 void |
| 746 gaim_blist_update_buddy_status(GaimBuddy *buddy, GaimStatus *old_status) | |
| 9285 | 747 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
748 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 10052 | 749 GaimPresence *presence; |
| 750 GaimStatus *status; | |
| 9285 | 751 |
| 752 g_return_if_fail(buddy != NULL); | |
| 5228 | 753 |
| 10052 | 754 presence = gaim_buddy_get_presence(buddy); |
| 755 status = gaim_presence_get_active_status(presence); | |
| 756 | |
| 10847 | 757 gaim_debug_info("blist", "Updating buddy status for %s (%s)\n", |
| 758 buddy->name, gaim_account_get_protocol_name(buddy->account)); | |
| 10052 | 759 |
| 760 if (gaim_status_is_online(status) && | |
| 761 !gaim_status_is_online(old_status)) { | |
| 6901 | 762 int old_present = buddy->present; |
| 10052 | 763 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
764 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-on", buddy); |
| 9285 | 765 if (old_present != GAIM_BUDDY_SIGNING_OFF) { |
| 6901 | 766 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online++; |
| 9285 | 767 if (((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 1) |
| 6901 | 768 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online++; |
| 769 } | |
| 10052 | 770 if (buddy->timer > 0) |
| 771 gaim_timeout_remove(buddy->timer); | |
| 772 buddy->timer = gaim_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
| 773 | |
| 774 } else if (!gaim_status_is_online(status) && | |
| 775 gaim_status_is_online(old_status)) { | |
| 5228 | 776 buddy->present = GAIM_BUDDY_SIGNING_OFF; |
| 10475 | 777 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
|
778 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-off", buddy); |
| 10052 | 779 if (buddy->timer > 0) |
| 780 gaim_timeout_remove(buddy->timer); | |
| 781 buddy->timer = gaim_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
| 782 | |
| 783 } else if (gaim_status_is_available(status) && | |
| 784 !gaim_status_is_available(old_status)) { | |
| 785 gaim_signal_emit(gaim_blist_get_handle(), "buddy-back", buddy); | |
| 786 | |
| 787 } else if (!gaim_status_is_available(status) && | |
| 788 gaim_status_is_available(old_status)) { | |
| 789 gaim_signal_emit(gaim_blist_get_handle(), "buddy-away", buddy); | |
| 790 | |
| 5228 | 791 } |
| 792 | |
| 10205 | 793 /* |
| 794 * This function used to only call the following two functions if one of | |
| 795 * the above signals had been triggered, but that's not good, because | |
| 796 * if someone's away message changes and they don't go from away to back | |
| 797 * to away then no signal is triggered. | |
| 798 * | |
| 799 * It's a safe assumption that SOMETHING called this function. PROBABLY | |
| 800 * because something, somewhere changed. Calling the stuff below | |
| 801 * certainly won't hurt anything. Unless you're on a K6-2 300. | |
| 802 */ | |
| 10378 | 803 gaim_contact_invalidate_priority_buddy(gaim_buddy_get_contact(buddy)); |
| 10205 | 804 if (ops && ops->update) |
| 805 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
| 5228 | 806 } |
| 807 | |
| 9285 | 808 void gaim_blist_update_buddy_icon(GaimBuddy *buddy) |
| 5228 | 809 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
810 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 811 |
| 812 g_return_if_fail(buddy != NULL); | |
| 813 | |
| 814 if (ops && ops->update) | |
| 815 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
| 816 } | |
| 817 | |
| 818 /* | |
| 10428 | 819 * TODO: Maybe remove the call to this from server.c and call it |
| 9285 | 820 * from oscar.c and toc.c instead? |
| 821 */ | |
| 822 void gaim_blist_rename_buddy(GaimBuddy *buddy, const char *name) | |
| 823 { | |
| 824 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; | |
| 825 struct _gaim_hbuddy *hb; | |
| 826 | |
| 827 g_return_if_fail(buddy != NULL); | |
| 828 | |
| 829 hb = g_new(struct _gaim_hbuddy, 1); | |
| 8675 | 830 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
| 831 hb->account = buddy->account; | |
| 832 hb->group = ((GaimBlistNode *)buddy)->parent->parent; | |
| 833 g_hash_table_remove(gaimbuddylist->buddies, hb); | |
| 834 | |
| 835 g_free(hb->name); | |
| 836 hb->name = g_strdup(gaim_normalize(buddy->account, name)); | |
| 837 g_hash_table_replace(gaimbuddylist->buddies, hb, buddy); | |
| 838 | |
| 5634 | 839 g_free(buddy->name); |
| 5228 | 840 buddy->name = g_strdup(name); |
| 9285 | 841 |
| 10704 | 842 gaim_blist_schedule_save(); |
| 9285 | 843 |
| 844 if (ops && ops->update) | |
| 845 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
| 5228 | 846 } |
| 5234 | 847 |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
848 void gaim_blist_alias_chat(GaimChat *chat, const char *alias) |
| 5234 | 849 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
850 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 5234 | 851 |
| 9285 | 852 g_return_if_fail(chat != NULL); |
| 853 | |
| 5237 | 854 g_free(chat->alias); |
| 9285 | 855 if ((alias != NULL) && (*alias != '\0')) |
| 5237 | 856 chat->alias = g_strdup(alias); |
| 857 else | |
| 858 chat->alias = NULL; | |
| 859 | |
| 10704 | 860 gaim_blist_schedule_save(); |
| 9285 | 861 |
| 862 if (ops && ops->update) | |
| 863 ops->update(gaimbuddylist, (GaimBlistNode *)chat); | |
| 5234 | 864 } |
| 865 | |
| 9285 | 866 void gaim_blist_alias_buddy(GaimBuddy *buddy, const char *alias) |
| 5228 | 867 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
868 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
|
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5634
diff
changeset
|
869 GaimConversation *conv; |
| 5228 | 870 |
| 9285 | 871 g_return_if_fail(buddy != NULL); |
| 872 | |
| 5228 | 873 g_free(buddy->alias); |
| 9285 | 874 if ((alias != NULL) && (*alias != '\0')) |
| 5228 | 875 buddy->alias = g_strdup(alias); |
| 876 else | |
| 877 buddy->alias = NULL; | |
| 878 | |
| 10704 | 879 gaim_blist_schedule_save(); |
| 9285 | 880 |
| 881 if (ops && ops->update) | |
| 882 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
| 5228 | 883 |
| 10246 | 884 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, buddy->name, |
| 885 buddy->account); | |
| 5228 | 886 if (conv) |
| 887 gaim_conversation_autoset_title(conv); | |
| 888 } | |
| 889 | |
| 9285 | 890 void gaim_blist_server_alias_buddy(GaimBuddy *buddy, const char *alias) |
| 6058 | 891 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
892 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 6058 | 893 GaimConversation *conv; |
| 894 | |
| 9285 | 895 g_return_if_fail(buddy != NULL); |
| 896 | |
| 6058 | 897 g_free(buddy->server_alias); |
| 9285 | 898 if ((alias != NULL) && (*alias != '\0') && g_utf8_validate(alias, -1, NULL)) |
| 6058 | 899 buddy->server_alias = g_strdup(alias); |
| 900 else | |
| 901 buddy->server_alias = NULL; | |
| 902 | |
| 10704 | 903 gaim_blist_schedule_save(); |
| 9285 | 904 |
| 905 if (ops && ops->update) | |
| 906 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
| 6058 | 907 |
| 10246 | 908 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, buddy->name, |
| 909 buddy->account); | |
| 6058 | 910 if (conv) |
| 911 gaim_conversation_autoset_title(conv); | |
| 912 } | |
| 913 | |
| 9285 | 914 /* |
| 10428 | 915 * TODO: If merging, prompt the user if they want to merge. |
| 9285 | 916 */ |
| 917 void gaim_blist_rename_group(GaimGroup *source, const char *new_name) | |
| 5228 | 918 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
919 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 920 GaimGroup *dest; |
| 921 gchar *old_name; | |
| 922 GList *moved_buddies = NULL; | |
| 5346 | 923 GSList *accts; |
| 924 | |
| 9285 | 925 g_return_if_fail(source != NULL); |
| 926 g_return_if_fail(new_name != NULL); | |
| 927 | |
| 928 if (*new_name == '\0' || !strcmp(new_name, source->name)) | |
| 5346 | 929 return; |
| 9285 | 930 |
| 931 dest = gaim_find_group(new_name); | |
| 932 if (dest != NULL) { | |
| 933 /* We're merging two groups */ | |
| 934 GaimBlistNode *prev, *child, *next; | |
| 935 | |
| 936 prev = gaim_blist_get_last_child((GaimBlistNode*)dest); | |
| 937 child = ((GaimBlistNode*)source)->child; | |
| 938 | |
| 939 /* | |
| 10428 | 940 * TODO: This seems like a dumb way to do this... why not just |
| 9285 | 941 * append all children from the old group to the end of the new |
| 942 * one? PRPLs might be expecting to receive an add_buddy() for | |
| 943 * each moved buddy... | |
| 944 */ | |
| 945 while (child) | |
| 5346 | 946 { |
| 947 next = child->next; | |
| 9285 | 948 if (GAIM_BLIST_NODE_IS_CONTACT(child)) { |
| 6695 | 949 GaimBlistNode *bnode; |
| 9285 | 950 gaim_blist_add_contact((GaimContact *)child, dest, prev); |
| 951 for (bnode = child->child; bnode != NULL; bnode = bnode->next) { | |
| 952 gaim_blist_add_buddy((GaimBuddy *)bnode, (GaimContact *)child, | |
| 6695 | 953 NULL, bnode->prev); |
| 9285 | 954 moved_buddies = g_list_append(moved_buddies, bnode); |
| 955 } | |
| 5346 | 956 prev = child; |
| 9285 | 957 } else if (GAIM_BLIST_NODE_IS_CHAT(child)) { |
| 958 gaim_blist_add_chat((GaimChat *)child, dest, prev); | |
| 5346 | 959 prev = child; |
| 960 } else { | |
| 961 gaim_debug(GAIM_DEBUG_ERROR, "blist", | |
| 9285 | 962 "Unknown child type in group %s\n", source->name); |
| 5346 | 963 } |
| 964 child = next; | |
| 965 } | |
| 9285 | 966 |
| 967 /* Make a copy of the old group name and then delete the old group */ | |
| 968 old_name = g_strdup(source->name); | |
| 969 gaim_blist_remove_group(source); | |
| 5346 | 970 } else { |
| 9285 | 971 /* A simple rename */ |
| 972 GaimBlistNode *cnode, *bnode; | |
| 973 | |
| 974 /* Build a GList of all buddies in this group */ | |
| 975 for (cnode = ((GaimBlistNode *)source)->child; cnode != NULL; cnode = cnode->next) { | |
| 976 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
| 977 for (bnode = cnode->child; bnode != NULL; bnode = bnode->next) | |
| 978 moved_buddies = g_list_append(moved_buddies, bnode); | |
| 5346 | 979 } |
| 9285 | 980 |
| 981 old_name = source->name; | |
| 982 source->name = g_strdup(new_name); | |
| 983 | |
| 5346 | 984 } |
| 9285 | 985 |
| 986 /* Save our changes */ | |
| 10704 | 987 gaim_blist_schedule_save(); |
| 9285 | 988 |
| 989 /* Update the UI */ | |
| 990 if (ops && ops->update) | |
| 991 ops->update(gaimbuddylist, (GaimBlistNode*)source); | |
| 992 | |
| 993 /* Notify all PRPLs */ | |
|
10853
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
994 if(old_name && source && strcmp(source->name, old_name)) { |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
995 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
|
996 GaimAccount *account = accts->data; |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
997 GaimPluginProtocolInfo *prpl_info = NULL; |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
998 GList *l = NULL, *buddies = NULL; |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
999 |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1000 if(account->gc && account->gc->prpl) |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1001 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(account->gc->prpl); |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1002 |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1003 if(!prpl_info) |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1004 continue; |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1005 |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1006 for(l = moved_buddies; l; l = l->next) { |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1007 GaimBuddy *buddy = (GaimBuddy *)l->data; |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1008 |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1009 if(buddy && buddy->account == account) |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1010 buddies = g_list_append(buddies, (GaimBlistNode *)buddy); |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1011 } |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1012 |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1013 if(prpl_info->rename_group) { |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1014 prpl_info->rename_group(account->gc, old_name, source, buddies); |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1015 } else { |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1016 GList *cur, *groups = NULL; |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1017 |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1018 /* Make a list of what the groups each buddy is in */ |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1019 for(cur = buddies; cur; cur = cur->next) { |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1020 GaimBlistNode *node = (GaimBlistNode *)cur->data; |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1021 groups = g_list_append(groups, node->parent->parent); |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1022 } |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1023 |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1024 serv_remove_buddies(account->gc, buddies, groups); |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1025 g_list_free(groups); |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1026 serv_add_buddies(account->gc, buddies); |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1027 } |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1028 |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1029 g_list_free(buddies); |
|
2409700be3dc
[gaim-migrate @ 12527]
Luke Schierer <lschiere@pidgin.im>
parents:
10850
diff
changeset
|
1030 } |
| 9285 | 1031 } |
| 1032 g_list_free(moved_buddies); | |
| 1033 g_free(old_name); | |
| 5228 | 1034 } |
| 5234 | 1035 |
| 9285 | 1036 static void gaim_blist_node_initialize_settings(GaimBlistNode *node); |
| 7693 | 1037 |
| 7125 | 1038 GaimChat *gaim_chat_new(GaimAccount *account, const char *alias, GHashTable *components) |
| 5234 | 1039 { |
| 9285 | 1040 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1041 GaimChat *chat; |
| 9285 | 1042 |
| 1043 g_return_val_if_fail(account != NULL, FALSE); | |
| 1044 g_return_val_if_fail(components != NULL, FALSE); | |
| 5234 | 1045 |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1046 chat = g_new0(GaimChat, 1); |
| 5234 | 1047 chat->account = account; |
| 9285 | 1048 if ((alias != NULL) && (*alias != '\0')) |
| 5237 | 1049 chat->alias = g_strdup(alias); |
| 5234 | 1050 chat->components = components; |
| 9285 | 1051 gaim_blist_node_initialize_settings((GaimBlistNode *)chat); |
| 1052 ((GaimBlistNode *)chat)->type = GAIM_BLIST_CHAT_NODE; | |
| 5234 | 1053 |
| 1054 if (ops != NULL && ops->new_node != NULL) | |
| 1055 ops->new_node((GaimBlistNode *)chat); | |
| 1056 | |
| 11067 | 1057 GAIM_DBUS_REGISTER_POINTER(chat, DBUS_POINTER_CHAT); |
| 5234 | 1058 return chat; |
| 1059 } | |
| 1060 | |
| 6695 | 1061 GaimBuddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias) |
| 5228 | 1062 { |
| 9285 | 1063 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 1064 GaimBuddy *buddy; | |
| 1065 | |
| 1066 g_return_val_if_fail(account != NULL, FALSE); | |
| 1067 g_return_val_if_fail(screenname != NULL, FALSE); | |
| 1068 | |
| 1069 buddy = g_new0(GaimBuddy, 1); | |
| 9949 | 1070 buddy->account = account; |
| 1071 buddy->name = g_strdup(screenname); | |
| 1072 buddy->alias = g_strdup(alias); | |
| 1073 buddy->presence = gaim_presence_new_for_buddy(buddy); | |
| 1074 | |
| 10052 | 1075 gaim_presence_set_status_active(buddy->presence, "offline", TRUE); |
| 1076 | |
| 9285 | 1077 gaim_blist_node_initialize_settings((GaimBlistNode *)buddy); |
| 1078 ((GaimBlistNode *)buddy)->type = GAIM_BLIST_BUDDY_NODE; | |
| 1079 | |
| 1080 if (ops && ops->new_node) | |
| 1081 ops->new_node((GaimBlistNode *)buddy); | |
| 1082 | |
| 11067 | 1083 GAIM_DBUS_REGISTER_POINTER(buddy, DBUS_POINTER_BUDDY); |
| 9285 | 1084 return buddy; |
| 5228 | 1085 } |
| 5634 | 1086 |
|
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1087 void |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1088 gaim_buddy_set_icon(GaimBuddy *buddy, GaimBuddyIcon *icon) |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1089 { |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1090 g_return_if_fail(buddy != NULL); |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1091 |
|
9261
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1092 if (buddy->icon != icon) |
|
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1093 { |
|
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1094 if (buddy->icon != NULL) |
|
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1095 gaim_buddy_icon_unref(buddy->icon); |
|
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1096 |
|
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1097 buddy->icon = (icon == NULL ? NULL : gaim_buddy_icon_ref(icon)); |
|
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
1098 } |
|
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1099 |
| 9324 | 1100 if (buddy->icon) |
| 1101 gaim_buddy_icon_cache(icon, buddy); | |
| 1102 else | |
|
11040
3428ad6f5049
[gaim-migrate @ 12940]
Richard Laager <rlaager@wiktel.com>
parents:
11033
diff
changeset
|
1103 gaim_buddy_icon_uncache(buddy); |
| 9299 | 1104 |
| 10704 | 1105 gaim_blist_schedule_save(); |
| 9926 | 1106 |
|
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1107 gaim_blist_update_buddy_icon(buddy); |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1108 } |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1109 |
|
10037
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1110 GaimAccount * |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1111 gaim_buddy_get_account(const GaimBuddy *buddy) |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1112 { |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1113 g_return_val_if_fail(buddy != NULL, NULL); |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1114 |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1115 return buddy->account; |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1116 } |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1117 |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1118 const char * |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1119 gaim_buddy_get_name(const GaimBuddy *buddy) |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1120 { |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1121 g_return_val_if_fail(buddy != NULL, NULL); |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1122 |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1123 return buddy->name; |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1124 } |
|
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
1125 |
|
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1126 GaimBuddyIcon * |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1127 gaim_buddy_get_icon(const GaimBuddy *buddy) |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1128 { |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1129 g_return_val_if_fail(buddy != NULL, NULL); |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1130 |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1131 return buddy->icon; |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1132 } |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1133 |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1134 void gaim_blist_add_chat(GaimChat *chat, GaimGroup *group, GaimBlistNode *node) |
| 5234 | 1135 { |
| 9285 | 1136 GaimBlistNode *cnode = (GaimBlistNode*)chat; |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1137 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 6774 | 1138 |
| 1139 g_return_if_fail(chat != NULL); | |
| 9285 | 1140 g_return_if_fail(GAIM_BLIST_NODE_IS_CHAT((GaimBlistNode *)chat)); |
| 1141 | |
| 1142 if (node == NULL) { | |
| 1143 if (group == NULL) { | |
| 1144 group = gaim_group_new(_("Chats")); | |
| 1145 gaim_blist_add_group(group, | |
| 5634 | 1146 gaim_blist_get_last_sibling(gaimbuddylist->root)); |
| 5234 | 1147 } |
| 1148 } else { | |
| 9285 | 1149 group = (GaimGroup*)node->parent; |
| 5234 | 1150 } |
| 1151 | |
| 1152 /* if we're moving to overtop of ourselves, do nothing */ | |
| 9285 | 1153 if (cnode == node) |
| 5234 | 1154 return; |
| 1155 | |
| 1156 if (cnode->parent) { | |
| 1157 /* This chat was already in the list and is | |
| 1158 * being moved. | |
| 1159 */ | |
| 6695 | 1160 ((GaimGroup *)cnode->parent)->totalsize--; |
| 5855 | 1161 if (gaim_account_is_connected(chat->account)) { |
| 6695 | 1162 ((GaimGroup *)cnode->parent)->online--; |
| 1163 ((GaimGroup *)cnode->parent)->currentsize--; | |
| 5287 | 1164 } |
| 9285 | 1165 if (cnode->next) |
| 5234 | 1166 cnode->next->prev = cnode->prev; |
| 9285 | 1167 if (cnode->prev) |
| 5234 | 1168 cnode->prev->next = cnode->next; |
| 9285 | 1169 if (cnode->parent->child == cnode) |
| 5234 | 1170 cnode->parent->child = cnode->next; |
| 1171 | |
| 1172 ops->remove(gaimbuddylist, cnode); | |
| 1173 | |
| 10704 | 1174 gaim_blist_schedule_save(); |
| 5234 | 1175 } |
| 1176 | |
| 9285 | 1177 if (node != NULL) { |
| 1178 if (node->next) | |
| 1179 node->next->prev = cnode; | |
| 1180 cnode->next = node->next; | |
| 1181 cnode->prev = node; | |
| 1182 cnode->parent = node->parent; | |
| 1183 node->next = cnode; | |
| 1184 ((GaimGroup *)node->parent)->totalsize++; | |
| 5855 | 1185 if (gaim_account_is_connected(chat->account)) { |
| 9285 | 1186 ((GaimGroup *)node->parent)->online++; |
| 1187 ((GaimGroup *)node->parent)->currentsize++; | |
| 5287 | 1188 } |
| 5234 | 1189 } else { |
| 9285 | 1190 if (((GaimBlistNode *)group)->child) |
| 1191 ((GaimBlistNode *)group)->child->prev = cnode; | |
| 1192 cnode->next = ((GaimBlistNode *)group)->child; | |
| 5634 | 1193 cnode->prev = NULL; |
| 9285 | 1194 ((GaimBlistNode *)group)->child = cnode; |
| 1195 cnode->parent = (GaimBlistNode *)group; | |
| 1196 group->totalsize++; | |
| 5855 | 1197 if (gaim_account_is_connected(chat->account)) { |
| 9285 | 1198 group->online++; |
| 1199 group->currentsize++; | |
| 5287 | 1200 } |
| 5234 | 1201 } |
| 1202 | |
| 10704 | 1203 gaim_blist_schedule_save(); |
| 9285 | 1204 |
| 1205 if (ops && ops->update) | |
| 1206 ops->update(gaimbuddylist, (GaimBlistNode *)cnode); | |
| 5234 | 1207 } |
| 1208 | |
| 7879 | 1209 void gaim_blist_add_buddy(GaimBuddy *buddy, GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
| 5228 | 1210 { |
| 6695 | 1211 GaimBlistNode *cnode, *bnode; |
| 1212 GaimGroup *g; | |
| 1213 GaimContact *c; | |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1214 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 5247 | 1215 struct _gaim_hbuddy *hb; |
| 6695 | 1216 |
| 1217 g_return_if_fail(buddy != NULL); | |
| 6774 | 1218 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY((GaimBlistNode*)buddy)); |
| 6695 | 1219 |
| 1220 bnode = (GaimBlistNode *)buddy; | |
| 5228 | 1221 |
| 6695 | 1222 /* if we're moving to overtop of ourselves, do nothing */ |
| 9285 | 1223 if (bnode == node || (!node && bnode->parent && |
| 6695 | 1224 contact && bnode->parent == (GaimBlistNode*)contact |
| 1225 && bnode == bnode->parent->child)) | |
| 1226 return; | |
| 1227 | |
| 9285 | 1228 if (node && GAIM_BLIST_NODE_IS_BUDDY(node)) { |
| 6695 | 1229 c = (GaimContact*)node->parent; |
| 1230 g = (GaimGroup*)node->parent->parent; | |
| 9285 | 1231 } else if (contact) { |
| 6695 | 1232 c = contact; |
| 9285 | 1233 g = (GaimGroup *)((GaimBlistNode *)c)->parent; |
| 1234 } else { | |
| 1235 if (group) { | |
| 6695 | 1236 g = group; |
| 1237 } else { | |
| 5228 | 1238 g = gaim_group_new(_("Buddies")); |
| 5634 | 1239 gaim_blist_add_group(g, |
| 1240 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 5228 | 1241 } |
| 6695 | 1242 c = gaim_contact_new(); |
| 1243 gaim_blist_add_contact(c, g, | |
| 1244 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
| 5228 | 1245 } |
| 1246 | |
| 6695 | 1247 cnode = (GaimBlistNode *)c; |
| 5228 | 1248 |
| 9285 | 1249 if (bnode->parent) { |
| 1250 if (GAIM_BUDDY_IS_ONLINE(buddy)) { | |
| 6695 | 1251 ((GaimContact*)bnode->parent)->online--; |
| 9285 | 1252 if (((GaimContact*)bnode->parent)->online == 0) |
| 6695 | 1253 ((GaimGroup*)bnode->parent->parent)->online--; |
| 1254 } | |
| 9285 | 1255 if (gaim_account_is_connected(buddy->account)) { |
| 6695 | 1256 ((GaimContact*)bnode->parent)->currentsize--; |
| 9285 | 1257 if (((GaimContact*)bnode->parent)->currentsize == 0) |
| 6695 | 1258 ((GaimGroup*)bnode->parent->parent)->currentsize--; |
| 1259 } | |
| 1260 ((GaimContact*)bnode->parent)->totalsize--; | |
| 1261 /* the group totalsize will be taken care of by remove_contact below */ | |
| 1262 | |
| 9285 | 1263 if (bnode->parent->parent != (GaimBlistNode*)g) |
| 6695 | 1264 serv_move_buddy(buddy, (GaimGroup *)bnode->parent->parent, g); |
| 5277 | 1265 |
| 9285 | 1266 if (bnode->next) |
| 5228 | 1267 bnode->next->prev = bnode->prev; |
| 9285 | 1268 if (bnode->prev) |
| 5228 | 1269 bnode->prev->next = bnode->next; |
| 9285 | 1270 if (bnode->parent->child == bnode) |
| 5228 | 1271 bnode->parent->child = bnode->next; |
| 1272 | |
| 1273 ops->remove(gaimbuddylist, bnode); | |
| 1274 | |
| 10704 | 1275 gaim_blist_schedule_save(); |
| 9285 | 1276 |
| 1277 if (bnode->parent->parent != (GaimBlistNode*)g) { | |
| 6742 | 1278 hb = g_new(struct _gaim_hbuddy, 1); |
| 7261 | 1279 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
| 6742 | 1280 hb->account = buddy->account; |
| 1281 hb->group = bnode->parent->parent; | |
| 6775 | 1282 g_hash_table_remove(gaimbuddylist->buddies, hb); |
| 7162 | 1283 g_free(hb->name); |
| 6742 | 1284 g_free(hb); |
| 1285 } | |
| 6794 | 1286 |
| 9285 | 1287 if (!bnode->parent->child) { |
| 6794 | 1288 gaim_blist_remove_contact((GaimContact*)bnode->parent); |
| 7003 | 1289 } else { |
| 10378 | 1290 gaim_contact_invalidate_priority_buddy((GaimContact*)bnode->parent); |
| 7003 | 1291 ops->update(gaimbuddylist, bnode->parent); |
| 1292 } | |
| 5228 | 1293 } |
| 1294 | |
| 9285 | 1295 if (node && GAIM_BLIST_NODE_IS_BUDDY(node)) { |
| 1296 if (node->next) | |
| 6695 | 1297 node->next->prev = bnode; |
| 1298 bnode->next = node->next; | |
| 1299 bnode->prev = node; | |
| 1300 bnode->parent = node->parent; | |
| 1301 node->next = bnode; | |
| 5228 | 1302 } else { |
| 9285 | 1303 if (cnode->child) |
| 6695 | 1304 cnode->child->prev = bnode; |
| 1305 bnode->prev = NULL; | |
| 1306 bnode->next = cnode->child; | |
| 1307 cnode->child = bnode; | |
| 1308 bnode->parent = cnode; | |
| 5228 | 1309 } |
| 1310 | |
| 9285 | 1311 if (GAIM_BUDDY_IS_ONLINE(buddy)) { |
| 6695 | 1312 ((GaimContact*)bnode->parent)->online++; |
| 9285 | 1313 if (((GaimContact*)bnode->parent)->online == 1) |
| 6695 | 1314 ((GaimGroup*)bnode->parent->parent)->online++; |
| 1315 } | |
| 9285 | 1316 if (gaim_account_is_connected(buddy->account)) { |
| 6695 | 1317 ((GaimContact*)bnode->parent)->currentsize++; |
| 9285 | 1318 if (((GaimContact*)bnode->parent)->currentsize == 1) |
| 6695 | 1319 ((GaimGroup*)bnode->parent->parent)->currentsize++; |
| 1320 } | |
| 1321 ((GaimContact*)bnode->parent)->totalsize++; | |
| 1322 | |
| 6742 | 1323 hb = g_new(struct _gaim_hbuddy, 1); |
| 7261 | 1324 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
| 5247 | 1325 hb->account = buddy->account; |
| 6695 | 1326 hb->group = ((GaimBlistNode*)buddy)->parent->parent; |
| 5247 | 1327 |
| 6742 | 1328 g_hash_table_replace(gaimbuddylist->buddies, hb, buddy); |
| 5247 | 1329 |
| 10378 | 1330 gaim_contact_invalidate_priority_buddy(gaim_buddy_get_contact(buddy)); |
| 9285 | 1331 |
| 10704 | 1332 gaim_blist_schedule_save(); |
| 9285 | 1333 |
| 1334 if (ops && ops->update) | |
| 5228 | 1335 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); |
| 1336 } | |
| 1337 | |
| 6695 | 1338 GaimContact *gaim_contact_new() |
| 5228 | 1339 { |
| 9285 | 1340 GaimBlistUiOps *ops = gaim_blist_get_ui_ops(); |
| 1341 | |
| 1342 GaimContact *contact = g_new0(GaimContact, 1); | |
| 1343 contact->totalsize = 0; | |
| 1344 contact->currentsize = 0; | |
| 1345 contact->online = 0; | |
| 1346 gaim_blist_node_initialize_settings((GaimBlistNode *)contact); | |
| 1347 ((GaimBlistNode *)contact)->type = GAIM_BLIST_CONTACT_NODE; | |
| 1348 | |
| 1349 if (ops && ops->new_node) | |
| 1350 ops->new_node((GaimBlistNode *)contact); | |
| 1351 | |
| 11067 | 1352 GAIM_DBUS_REGISTER_POINTER(contact, DBUS_POINTER_CONTACT); |
| 9285 | 1353 return contact; |
| 6695 | 1354 } |
| 1355 | |
| 9285 | 1356 void gaim_contact_set_alias(GaimContact *contact, const char *alias) |
| 6755 | 1357 { |
| 7245 | 1358 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 1359 | |
| 6755 | 1360 g_return_if_fail(contact != NULL); |
| 1361 | |
| 9285 | 1362 if (contact->alias != NULL) |
| 6755 | 1363 g_free(contact->alias); |
| 1364 | |
| 9285 | 1365 if ((alias != NULL) && (*alias != '\0')) |
| 7245 | 1366 contact->alias = g_strdup(alias); |
| 1367 else | |
| 1368 contact->alias = NULL; | |
| 1369 | |
| 10704 | 1370 gaim_blist_schedule_save(); |
| 9285 | 1371 |
| 1372 if (ops && ops->update) | |
| 7245 | 1373 ops->update(gaimbuddylist, (GaimBlistNode*)contact); |
| 6755 | 1374 } |
| 1375 | |
| 1376 const char *gaim_contact_get_alias(GaimContact* contact) | |
| 1377 { | |
| 9285 | 1378 g_return_val_if_fail(contact != NULL, NULL); |
| 1379 | |
| 1380 if (contact->alias) | |
| 7312 | 1381 return contact->alias; |
| 1382 | |
| 10378 | 1383 return gaim_buddy_get_alias(gaim_contact_get_priority_buddy(contact)); |
| 6755 | 1384 } |
| 1385 | |
| 9787 | 1386 gboolean gaim_contact_on_account(GaimContact *c, GaimAccount *account) |
| 1387 { | |
| 1388 GaimBlistNode *bnode, *cnode = (GaimBlistNode *) c; | |
| 1389 | |
| 1390 g_return_val_if_fail(c != NULL, FALSE); | |
| 1391 g_return_val_if_fail(account != NULL, FALSE); | |
| 1392 | |
| 1393 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1394 GaimBuddy *buddy; | |
| 1395 | |
| 1396 if (! GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 1397 continue; | |
| 1398 | |
| 1399 buddy = (GaimBuddy *)bnode; | |
| 1400 if (buddy->account == account) | |
| 1401 return TRUE; | |
| 1402 } | |
| 1403 return FALSE; | |
| 1404 } | |
| 1405 | |
| 10428 | 1406 void gaim_contact_invalidate_priority_buddy(GaimContact *contact) |
| 1407 { | |
| 1408 g_return_if_fail(contact != NULL); | |
| 1409 | |
| 1410 contact->priority_valid = FALSE; | |
| 1411 } | |
| 1412 | |
| 6695 | 1413 GaimGroup *gaim_group_new(const char *name) |
| 1414 { | |
| 9285 | 1415 GaimBlistUiOps *ops = gaim_blist_get_ui_ops(); |
| 1416 GaimGroup *group = gaim_find_group(name); | |
| 1417 | |
| 1418 if (group != NULL) | |
| 1419 return group; | |
| 1420 | |
| 1421 group = g_new0(GaimGroup, 1); | |
| 1422 group->name = g_strdup(name); | |
| 1423 group->totalsize = 0; | |
| 1424 group->currentsize = 0; | |
| 1425 group->online = 0; | |
| 1426 gaim_blist_node_initialize_settings((GaimBlistNode *)group); | |
| 1427 ((GaimBlistNode *)group)->type = GAIM_BLIST_GROUP_NODE; | |
| 1428 | |
| 1429 if (ops && ops->new_node) | |
| 1430 ops->new_node((GaimBlistNode *)group); | |
| 1431 | |
| 11067 | 1432 GAIM_DBUS_REGISTER_POINTER(group, DBUS_POINTER_GROUP); |
| 9285 | 1433 return group; |
| 5228 | 1434 } |
| 1435 | |
| 6695 | 1436 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
| 1437 { | |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1438 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 6695 | 1439 GaimGroup *g; |
| 6742 | 1440 GaimBlistNode *gnode, *cnode, *bnode; |
| 6695 | 1441 |
| 6774 | 1442 g_return_if_fail(contact != NULL); |
| 1443 g_return_if_fail(GAIM_BLIST_NODE_IS_CONTACT((GaimBlistNode*)contact)); | |
| 6695 | 1444 |
| 9285 | 1445 if ((GaimBlistNode*)contact == node) |
| 6975 | 1446 return; |
| 1447 | |
| 9285 | 1448 if (node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
| 6695 | 1449 GAIM_BLIST_NODE_IS_CHAT(node))) |
| 1450 g = (GaimGroup*)node->parent; | |
| 9285 | 1451 else if (group) |
| 6695 | 1452 g = group; |
| 1453 else { | |
| 1454 g = gaim_group_new(_("Buddies")); | |
| 1455 gaim_blist_add_group(g, | |
| 1456 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 1457 } | |
| 1458 | |
| 1459 gnode = (GaimBlistNode*)g; | |
| 1460 cnode = (GaimBlistNode*)contact; | |
| 1461 | |
| 9285 | 1462 if (cnode->parent) { |
| 1463 if (cnode->parent->child == cnode) | |
| 6731 | 1464 cnode->parent->child = cnode->next; |
| 9285 | 1465 if (cnode->prev) |
| 6695 | 1466 cnode->prev->next = cnode->next; |
| 9285 | 1467 if (cnode->next) |
| 6695 | 1468 cnode->next->prev = cnode->prev; |
| 1469 | |
| 9285 | 1470 if (cnode->parent != gnode) { |
| 9928 | 1471 bnode = cnode->child; |
| 1472 while (bnode) { | |
| 1473 GaimBlistNode *next_bnode = bnode->next; | |
| 6742 | 1474 GaimBuddy *b = (GaimBuddy*)bnode; |
| 1475 | |
| 1476 struct _gaim_hbuddy *hb = g_new(struct _gaim_hbuddy, 1); | |
| 7261 | 1477 hb->name = g_strdup(gaim_normalize(b->account, b->name)); |
| 6742 | 1478 hb->account = b->account; |
| 1479 hb->group = cnode->parent; | |
| 1480 | |
| 6776 | 1481 g_hash_table_remove(gaimbuddylist->buddies, hb); |
| 6742 | 1482 |
| 9285 | 1483 if (!gaim_find_buddy_in_group(b->account, b->name, g)) { |
| 8328 | 1484 hb->group = gnode; |
| 1485 g_hash_table_replace(gaimbuddylist->buddies, hb, b); | |
| 1486 | |
| 9285 | 1487 if (b->account->gc) |
| 1488 serv_move_buddy(b, (GaimGroup *)cnode->parent, g); | |
| 8328 | 1489 } else { |
| 9928 | 1490 gboolean empty_contact = FALSE; |
| 1491 | |
| 8328 | 1492 /* this buddy already exists in the group, so we're |
| 1493 * gonna delete it instead */ | |
| 1494 g_free(hb->name); | |
| 1495 g_free(hb); | |
| 9285 | 1496 if (b->account->gc) |
| 1497 serv_remove_buddy(b->account->gc, b, (GaimGroup *)cnode->parent); | |
| 1498 | |
| 1499 if (!cnode->child->next) | |
| 8328 | 1500 empty_contact = TRUE; |
| 1501 gaim_blist_remove_buddy(b); | |
| 9928 | 1502 |
| 1503 /** in gaim_blist_remove_buddy(), if the last buddy in a | |
| 1504 * contact is removed, the contact is cleaned up and | |
| 1505 * g_free'd, so we mustn't try to reference bnode->next */ | |
| 1506 if (empty_contact) | |
| 1507 return; | |
| 8328 | 1508 } |
| 9928 | 1509 bnode = next_bnode; |
| 6742 | 1510 } |
| 1511 } | |
| 9928 | 1512 |
| 1513 if (contact->online > 0) | |
| 1514 ((GaimGroup*)cnode->parent)->online--; | |
| 1515 if (contact->currentsize > 0) | |
| 1516 ((GaimGroup*)cnode->parent)->currentsize--; | |
| 1517 ((GaimGroup*)cnode->parent)->totalsize--; | |
| 1518 | |
| 1519 ops->remove(gaimbuddylist, cnode); | |
| 1520 | |
| 10704 | 1521 gaim_blist_schedule_save(); |
| 6695 | 1522 } |
| 1523 | |
| 9285 | 1524 if (node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
| 6695 | 1525 GAIM_BLIST_NODE_IS_CHAT(node))) { |
| 9285 | 1526 if (node->next) |
| 6695 | 1527 node->next->prev = cnode; |
| 1528 cnode->next = node->next; | |
| 1529 cnode->prev = node; | |
| 1530 cnode->parent = node->parent; | |
| 1531 node->next = cnode; | |
| 1532 } else { | |
| 9285 | 1533 if (gnode->child) |
| 6695 | 1534 gnode->child->prev = cnode; |
| 1535 cnode->prev = NULL; | |
| 1536 cnode->next = gnode->child; | |
| 1537 gnode->child = cnode; | |
| 1538 cnode->parent = gnode; | |
| 1539 } | |
| 1540 | |
| 9285 | 1541 if (contact->online > 0) |
| 6695 | 1542 g->online++; |
| 9285 | 1543 if (contact->currentsize > 0) |
| 6695 | 1544 g->currentsize++; |
| 1545 g->totalsize++; | |
| 1546 | |
| 10704 | 1547 gaim_blist_schedule_save(); |
| 9285 | 1548 |
| 1549 if (ops && cnode->child) | |
| 6695 | 1550 ops->update(gaimbuddylist, cnode); |
| 6775 | 1551 |
| 9285 | 1552 for (bnode = cnode->child; bnode; bnode = bnode->next) |
| 6775 | 1553 ops->update(gaimbuddylist, bnode); |
| 6695 | 1554 } |
| 1555 | |
| 7246 | 1556 void gaim_blist_merge_contact(GaimContact *source, GaimBlistNode *node) |
| 6965 | 1557 { |
| 1558 GaimBlistNode *sourcenode = (GaimBlistNode*)source; | |
| 7246 | 1559 GaimBlistNode *targetnode; |
| 1560 GaimBlistNode *prev, *cur, *next; | |
| 1561 GaimContact *target; | |
| 1562 | |
| 9285 | 1563 g_return_if_fail(source != NULL); |
| 1564 g_return_if_fail(node != NULL); | |
| 1565 | |
| 1566 if (GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
| 1567 target = (GaimContact *)node; | |
| 7246 | 1568 prev = gaim_blist_get_last_child(node); |
| 9285 | 1569 } else if (GAIM_BLIST_NODE_IS_BUDDY(node)) { |
| 1570 target = (GaimContact *)node->parent; | |
| 7246 | 1571 prev = node; |
| 1572 } else { | |
| 6965 | 1573 return; |
| 7246 | 1574 } |
| 1575 | |
| 9285 | 1576 if (source == target || !target) |
| 7246 | 1577 return; |
| 1578 | |
| 9285 | 1579 targetnode = (GaimBlistNode *)target; |
| 7246 | 1580 next = sourcenode->child; |
| 1581 | |
| 9285 | 1582 while (next) { |
| 7246 | 1583 cur = next; |
| 1584 next = cur->next; | |
| 9285 | 1585 if (GAIM_BLIST_NODE_IS_BUDDY(cur)) { |
| 1586 gaim_blist_add_buddy((GaimBuddy *)cur, target, NULL, prev); | |
| 7246 | 1587 prev = cur; |
| 1588 } | |
| 6965 | 1589 } |
| 1590 } | |
| 1591 | |
| 9285 | 1592 void gaim_blist_add_group(GaimGroup *group, GaimBlistNode *node) |
| 5228 | 1593 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1594 GaimBlistUiOps *ops; |
| 5228 | 1595 GaimBlistNode *gnode = (GaimBlistNode*)group; |
| 1596 | |
| 6774 | 1597 g_return_if_fail(group != NULL); |
| 9285 | 1598 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP((GaimBlistNode *)group)); |
| 1599 | |
| 5228 | 1600 ops = gaimbuddylist->ui_ops; |
| 1601 | |
| 1602 if (!gaimbuddylist->root) { | |
| 1603 gaimbuddylist->root = gnode; | |
| 1604 return; | |
| 1605 } | |
| 1606 | |
| 1607 /* if we're moving to overtop of ourselves, do nothing */ | |
| 9285 | 1608 if (gnode == node) |
| 5228 | 1609 return; |
| 1610 | |
| 1611 if (gaim_find_group(group->name)) { | |
| 1612 /* This is just being moved */ | |
| 1613 | |
| 9285 | 1614 ops->remove(gaimbuddylist, (GaimBlistNode *)group); |
| 1615 | |
| 1616 if (gnode == gaimbuddylist->root) | |
| 5228 | 1617 gaimbuddylist->root = gnode->next; |
| 9285 | 1618 if (gnode->prev) |
| 5228 | 1619 gnode->prev->next = gnode->next; |
| 9285 | 1620 if (gnode->next) |
| 5228 | 1621 gnode->next->prev = gnode->prev; |
| 1622 } | |
| 1623 | |
| 6695 | 1624 if (node && GAIM_BLIST_NODE_IS_GROUP(node)) { |
| 5634 | 1625 gnode->next = node->next; |
| 1626 gnode->prev = node; | |
| 9285 | 1627 if (node->next) |
| 5634 | 1628 node->next->prev = gnode; |
| 1629 node->next = gnode; | |
| 1630 } else { | |
| 9285 | 1631 if (gaimbuddylist->root) |
| 6807 | 1632 gaimbuddylist->root->prev = gnode; |
| 5634 | 1633 gnode->next = gaimbuddylist->root; |
| 1634 gnode->prev = NULL; | |
| 1635 gaimbuddylist->root = gnode; | |
| 1636 } | |
| 1637 | |
| 10704 | 1638 gaim_blist_schedule_save(); |
| 9285 | 1639 |
| 1640 if (ops && ops->update) { | |
| 5228 | 1641 ops->update(gaimbuddylist, gnode); |
| 9285 | 1642 for (node = gnode->child; node; node = node->next) |
| 5228 | 1643 ops->update(gaimbuddylist, node); |
| 1644 } | |
| 1645 } | |
| 1646 | |
| 9285 | 1647 void gaim_blist_remove_contact(GaimContact *contact) |
| 5228 | 1648 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1649 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 1650 GaimBlistNode *node, *gnode; |
| 1651 | |
| 1652 g_return_if_fail(contact != NULL); | |
| 1653 | |
| 1654 node = (GaimBlistNode *)contact; | |
| 1655 gnode = node->parent; | |
| 1656 | |
| 1657 if (node->child) { | |
| 1658 /* | |
| 1659 * If this contact has children then remove them. When the last | |
| 10166 | 1660 * buddy is removed from the contact, the contact is automatically |
| 1661 * deleted. | |
| 9285 | 1662 */ |
| 10166 | 1663 while (node->child->next) { |
| 9285 | 1664 gaim_blist_remove_buddy((GaimBuddy*)node->child); |
| 6695 | 1665 } |
| 10166 | 1666 /* |
| 1667 * Remove the last buddy and trigger the deletion of the contact. | |
| 1668 * It would probably be cleaner if contact-deletion was done after | |
| 1669 * a timeout? Or if it had to be done manually, like below? | |
| 1670 */ | |
| 1671 gaim_blist_remove_buddy((GaimBuddy*)node->child); | |
| 6695 | 1672 } else { |
| 9285 | 1673 /* Remove the node from its parent */ |
| 1674 if (gnode->child == node) | |
| 1675 gnode->child = node->next; | |
| 1676 if (node->prev) | |
| 1677 node->prev->next = node->next; | |
| 1678 if (node->next) | |
| 1679 node->next->prev = node->prev; | |
| 1680 | |
| 10704 | 1681 gaim_blist_schedule_save(); |
| 9285 | 1682 |
| 1683 /* Update the UI */ | |
| 1684 if (ops && ops->remove) | |
| 1685 ops->remove(gaimbuddylist, node); | |
| 1686 | |
| 1687 /* Delete the node */ | |
| 10504 | 1688 g_hash_table_destroy(contact->node.settings); |
| 11067 | 1689 GAIM_DBUS_UNREGISTER_POINTER(contact); |
| 6695 | 1690 g_free(contact); |
| 1691 } | |
| 1692 } | |
| 1693 | |
| 9285 | 1694 void gaim_blist_remove_buddy(GaimBuddy *buddy) |
| 6695 | 1695 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1696 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 1697 GaimBlistNode *node, *cnode, *gnode; |
| 1698 GaimContact *contact; | |
| 6695 | 1699 GaimGroup *group; |
| 6742 | 1700 struct _gaim_hbuddy hb; |
| 5228 | 1701 |
| 9285 | 1702 g_return_if_fail(buddy != NULL); |
| 1703 | |
| 1704 node = (GaimBlistNode *)buddy; | |
| 6695 | 1705 cnode = node->parent; |
| 9285 | 1706 gnode = cnode->parent; |
| 1707 contact = (GaimContact *)cnode; | |
| 1708 group = (GaimGroup *)gnode; | |
| 1709 | |
| 1710 /* Remove the node from its parent */ | |
| 5228 | 1711 if (node->prev) |
| 1712 node->prev->next = node->next; | |
| 1713 if (node->next) | |
| 1714 node->next->prev = node->prev; | |
| 9285 | 1715 if (cnode->child == node) |
| 6695 | 1716 cnode->child = node->next; |
| 9285 | 1717 |
| 1718 /* Adjust size counts */ | |
| 1719 if (GAIM_BUDDY_IS_ONLINE(buddy)) { | |
| 1720 contact->online--; | |
| 1721 if (contact->online == 0) | |
| 1722 group->online--; | |
| 6695 | 1723 } |
| 9285 | 1724 if (gaim_account_is_connected(buddy->account)) { |
| 1725 contact->currentsize--; | |
| 1726 if (contact->currentsize == 0) | |
| 1727 group->currentsize--; | |
| 8194 | 1728 } |
| 9285 | 1729 contact->totalsize--; |
| 1730 | |
| 10704 | 1731 gaim_blist_schedule_save(); |
| 9285 | 1732 |
| 1733 /* Re-sort the contact */ | |
| 1734 if (contact->priority == buddy) { | |
| 10378 | 1735 gaim_contact_invalidate_priority_buddy(contact); |
| 9285 | 1736 if (ops && ops->update) |
| 1737 ops->update(gaimbuddylist, cnode); | |
| 1738 } | |
| 1739 | |
| 1740 /* Remove this buddy from the buddies hash table */ | |
| 7261 | 1741 hb.name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
| 5247 | 1742 hb.account = buddy->account; |
| 6695 | 1743 hb.group = ((GaimBlistNode*)buddy)->parent->parent; |
| 6742 | 1744 g_hash_table_remove(gaimbuddylist->buddies, &hb); |
| 7162 | 1745 g_free(hb.name); |
| 5247 | 1746 |
| 9285 | 1747 /* Update the UI */ |
| 1748 if (ops && ops->remove) | |
| 1749 ops->remove(gaimbuddylist, node); | |
| 1750 | |
| 1751 /* Delete the node */ | |
| 1752 if (buddy->timer > 0) | |
|
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
1753 gaim_timeout_remove(buddy->timer); |
|
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1754 if (buddy->icon != NULL) |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1755 gaim_buddy_icon_unref(buddy->icon); |
| 7693 | 1756 g_hash_table_destroy(buddy->node.settings); |
| 9944 | 1757 gaim_presence_remove_buddy(buddy->presence, buddy); |
| 1758 gaim_presence_destroy(buddy->presence); | |
| 5228 | 1759 g_free(buddy->name); |
| 1760 g_free(buddy->alias); | |
| 10504 | 1761 g_free(buddy->server_alias); |
| 11067 | 1762 |
| 1763 GAIM_DBUS_UNREGISTER_POINTER(buddy); | |
| 5228 | 1764 g_free(buddy); |
| 6755 | 1765 |
| 9285 | 1766 /* If the contact is empty then remove it */ |
| 1767 if (!cnode->child) | |
| 1768 gaim_blist_remove_contact(contact); | |
| 5228 | 1769 } |
| 1770 | |
| 9285 | 1771 void gaim_blist_remove_chat(GaimChat *chat) |
| 5234 | 1772 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1773 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 1774 GaimBlistNode *node, *gnode; |
| 6695 | 1775 GaimGroup *group; |
| 5234 | 1776 |
| 9285 | 1777 g_return_if_fail(chat != NULL); |
| 1778 | |
| 1779 node = (GaimBlistNode *)chat; | |
| 5234 | 1780 gnode = node->parent; |
| 6695 | 1781 group = (GaimGroup *)gnode; |
| 5234 | 1782 |
| 9285 | 1783 /* Remove the node from its parent */ |
| 1784 if (gnode->child == node) | |
| 5234 | 1785 gnode->child = node->next; |
| 1786 if (node->prev) | |
| 1787 node->prev->next = node->next; | |
| 1788 if (node->next) | |
| 1789 node->next->prev = node->prev; | |
| 9285 | 1790 |
| 1791 /* Adjust size counts */ | |
| 5855 | 1792 if (gaim_account_is_connected(chat->account)) { |
| 5394 | 1793 group->online--; |
| 9285 | 1794 group->currentsize--; |
| 5394 | 1795 } |
| 9285 | 1796 group->totalsize--; |
| 1797 | |
| 10704 | 1798 gaim_blist_schedule_save(); |
| 9285 | 1799 |
| 1800 /* Update the UI */ | |
| 1801 if (ops && ops->remove) | |
| 1802 ops->remove(gaimbuddylist, node); | |
| 1803 | |
| 1804 /* Delete the node */ | |
| 5234 | 1805 g_hash_table_destroy(chat->components); |
| 10504 | 1806 g_hash_table_destroy(chat->node.settings); |
| 5234 | 1807 g_free(chat->alias); |
| 11067 | 1808 GAIM_DBUS_UNREGISTER_POINTER(chat); |
| 5234 | 1809 g_free(chat); |
| 1810 } | |
| 1811 | |
| 9285 | 1812 void gaim_blist_remove_group(GaimGroup *group) |
| 5228 | 1813 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1814 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 1815 GaimBlistNode *node; |
|
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1816 GList *l; |
| 5228 | 1817 |
| 9285 | 1818 g_return_if_fail(group != NULL); |
| 1819 | |
| 1820 node = (GaimBlistNode *)group; | |
| 1821 | |
| 1822 /* Make sure the group is empty */ | |
| 1823 if (node->child) { | |
| 5228 | 1824 char *buf; |
| 1825 int count = 0; | |
| 9285 | 1826 GaimBlistNode *child; |
| 1827 | |
| 1828 for (child = node->child; child != NULL; child = child->next) | |
| 5228 | 1829 count++; |
| 1830 | |
| 6308 | 1831 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed " |
| 1832 "because its account was not logged in." | |
| 1833 " This buddy and the group were not " | |
| 1834 "removed.\n", | |
| 1835 "%d buddies from group %s were not " | |
| 1836 "removed because their accounts were " | |
| 6336 | 1837 "not logged in. These buddies and " |
| 1838 "the group were not removed.\n", count), | |
| 6308 | 1839 count, group->name); |
|
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1840 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); |
| 5228 | 1841 g_free(buf); |
| 1842 return; | |
| 1843 } | |
| 1844 | |
| 9285 | 1845 /* Remove the node from its parent */ |
| 1846 if (gaimbuddylist->root == node) | |
| 5228 | 1847 gaimbuddylist->root = node->next; |
| 1848 if (node->prev) | |
| 1849 node->prev->next = node->next; | |
| 1850 if (node->next) | |
| 1851 node->next->prev = node->prev; | |
| 1852 | |
| 10704 | 1853 gaim_blist_schedule_save(); |
| 9285 | 1854 |
| 1855 /* Update the UI */ | |
| 1856 if (ops && ops->remove) | |
| 1857 ops->remove(gaimbuddylist, node); | |
| 1858 | |
| 1859 /* Remove the group from all accounts that are online */ | |
|
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1860 for (l = gaim_connections_get_all(); l != NULL; l = l->next) |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1861 { |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1862 GaimConnection *gc = (GaimConnection *)l->data; |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1863 |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1864 if (gaim_connection_get_state(gc) == GAIM_CONNECTED) |
| 9285 | 1865 serv_remove_group(gc, group); |
|
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1866 } |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1867 |
| 9285 | 1868 /* Delete the node */ |
| 10504 | 1869 g_hash_table_destroy(group->node.settings); |
| 5228 | 1870 g_free(group->name); |
| 11067 | 1871 GAIM_DBUS_UNREGISTER_POINTER(group); |
| 5228 | 1872 g_free(group); |
| 1873 } | |
| 1874 | |
| 9285 | 1875 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact) |
| 1876 { | |
| 1877 g_return_val_if_fail(contact != NULL, NULL); | |
| 1878 | |
| 10378 | 1879 if (!contact->priority_valid) |
| 1880 gaim_contact_compute_priority_buddy(contact); | |
| 1881 | |
| 6843 | 1882 return contact->priority; |
| 6695 | 1883 } |
| 1884 | |
| 9620 | 1885 const char *gaim_buddy_get_alias_only(GaimBuddy *buddy) |
| 9285 | 1886 { |
| 1887 g_return_val_if_fail(buddy != NULL, NULL); | |
| 1888 | |
| 1889 if ((buddy->alias != NULL) && (*buddy->alias != '\0')) { | |
| 1890 return buddy->alias; | |
| 1891 } else if ((buddy->server_alias != NULL) && | |
| 10389 | 1892 (*buddy->server_alias != '\0')) { |
| 9285 | 1893 |
| 1894 return buddy->server_alias; | |
|
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1895 } |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1896 |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1897 return NULL; |
| 5228 | 1898 } |
| 1899 | |
| 9620 | 1900 |
| 1901 const char *gaim_buddy_get_contact_alias(GaimBuddy *buddy) | |
| 5228 | 1902 { |
| 9620 | 1903 GaimContact *c; |
| 1904 | |
| 1905 g_return_val_if_fail(buddy != NULL, NULL); | |
| 1906 | |
| 1907 /* Search for an alias for the buddy. In order of precedence: */ | |
| 1908 /* The buddy alias */ | |
| 1909 if (buddy->alias != NULL) | |
| 1910 return buddy->alias; | |
| 1911 | |
| 1912 /* The contact alias */ | |
| 1913 c = gaim_buddy_get_contact(buddy); | |
| 1914 if ((c != NULL) && (c->alias != NULL)) | |
| 1915 return c->alias; | |
| 1916 | |
| 10349 | 1917 /* The server alias */ |
| 1918 if ((buddy->server_alias) && (*buddy->server_alias)) | |
| 9620 | 1919 return buddy->server_alias; |
| 1920 | |
| 1921 /* The buddy's user name (i.e. no alias) */ | |
| 1922 return buddy->name; | |
| 5228 | 1923 } |
| 1924 | |
| 9620 | 1925 |
| 1926 const char *gaim_buddy_get_alias(GaimBuddy *buddy) | |
| 1927 { | |
| 1928 g_return_val_if_fail(buddy != NULL, NULL); | |
| 1929 | |
| 1930 /* Search for an alias for the buddy. In order of precedence: */ | |
| 1931 /* The buddy alias */ | |
| 1932 if (buddy->alias != NULL) | |
| 1933 return buddy->alias; | |
| 1934 | |
| 1935 /* The server alias, if preferences say so */ | |
| 10389 | 1936 if ((buddy->server_alias) && (*buddy->server_alias)) |
| 9620 | 1937 return buddy->server_alias; |
| 1938 | |
| 1939 /* The buddy's user name (i.e. no alias) */ | |
| 1940 return buddy->name; | |
| 1941 } | |
| 1942 | |
| 10349 | 1943 const char *gaim_buddy_get_local_alias(GaimBuddy *buddy) |
| 1944 { | |
| 1945 GaimContact *c; | |
| 1946 | |
| 1947 g_return_val_if_fail(buddy != NULL, NULL); | |
| 1948 | |
| 1949 /* Search for an alias for the buddy. In order of precedence: */ | |
| 1950 /* The buddy alias */ | |
| 1951 if (buddy->alias != NULL) | |
| 1952 return buddy->alias; | |
| 1953 | |
| 1954 /* The contact alias */ | |
| 1955 c = gaim_buddy_get_contact(buddy); | |
| 1956 if ((c != NULL) && (c->alias != NULL)) | |
| 1957 return c->alias; | |
| 1958 | |
| 1959 /* The buddy's user name (i.e. no alias) */ | |
| 1960 return buddy->name; | |
| 1961 } | |
| 9620 | 1962 |
| 7125 | 1963 const char *gaim_chat_get_name(GaimChat *chat) |
| 6744 | 1964 { |
| 9285 | 1965 struct proto_chat_entry *pce; |
| 1966 GList *parts, *tmp; | |
| 1967 char *ret; | |
| 1968 | |
| 1969 g_return_val_if_fail(chat != NULL, NULL); | |
| 1970 | |
| 1971 if ((chat->alias != NULL) && (*chat->alias != '\0')) | |
| 6744 | 1972 return chat->alias; |
| 9285 | 1973 |
| 1974 parts = GAIM_PLUGIN_PROTOCOL_INFO(chat->account->gc->prpl)->chat_info(chat->account->gc); | |
| 1975 pce = parts->data; | |
| 1976 ret = g_hash_table_lookup(chat->components, pce->identifier); | |
| 1977 for (tmp = parts; tmp; tmp = tmp->next) | |
| 1978 g_free(tmp->data); | |
| 1979 g_list_free(parts); | |
| 1980 | |
| 1981 return ret; | |
| 6744 | 1982 } |
| 1983 | |
| 6695 | 1984 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name) |
| 5228 | 1985 { |
| 6695 | 1986 GaimBuddy *buddy; |
| 5247 | 1987 struct _gaim_hbuddy hb; |
| 5758 | 1988 GaimBlistNode *group; |
| 5228 | 1989 |
| 9285 | 1990 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
| 1991 g_return_val_if_fail(account != NULL, NULL); | |
| 1992 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 5228 | 1993 |
| 7429 | 1994 hb.account = account; |
| 7261 | 1995 hb.name = g_strdup(gaim_normalize(account, name)); |
| 7429 | 1996 |
| 9285 | 1997 for (group = gaimbuddylist->root; group; group = group->next) { |
| 5758 | 1998 hb.group = group; |
| 7162 | 1999 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb))) { |
| 2000 g_free(hb.name); | |
| 5758 | 2001 return buddy; |
| 7162 | 2002 } |
| 5758 | 2003 } |
| 7162 | 2004 g_free(hb.name); |
| 9285 | 2005 |
| 5758 | 2006 return NULL; |
| 5228 | 2007 } |
| 2008 | |
| 6872 | 2009 GaimBuddy *gaim_find_buddy_in_group(GaimAccount *account, const char *name, |
| 2010 GaimGroup *group) | |
| 2011 { | |
| 2012 struct _gaim_hbuddy hb; | |
| 7162 | 2013 GaimBuddy *ret; |
| 6872 | 2014 |
| 9285 | 2015 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
| 2016 g_return_val_if_fail(account != NULL, NULL); | |
| 2017 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 6872 | 2018 |
| 7261 | 2019 hb.name = g_strdup(gaim_normalize(account, name)); |
| 6872 | 2020 hb.account = account; |
| 2021 hb.group = (GaimBlistNode*)group; | |
| 2022 | |
| 7162 | 2023 ret = g_hash_table_lookup(gaimbuddylist->buddies, &hb); |
| 2024 g_free(hb.name); | |
| 9285 | 2025 |
| 7162 | 2026 return ret; |
| 6872 | 2027 } |
| 2028 | |
| 6245 | 2029 GSList *gaim_find_buddies(GaimAccount *account, const char *name) |
| 2030 { | |
| 2031 struct buddy *buddy; | |
| 2032 struct _gaim_hbuddy hb; | |
| 9285 | 2033 GaimBlistNode *node; |
| 6245 | 2034 GSList *ret = NULL; |
| 2035 | |
| 9285 | 2036 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
| 2037 g_return_val_if_fail(account != NULL, NULL); | |
| 2038 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 6245 | 2039 |
| 7261 | 2040 hb.name = g_strdup(gaim_normalize(account, name)); |
| 6245 | 2041 hb.account = account; |
| 2042 | |
| 9285 | 2043 for (node = gaimbuddylist->root; node != NULL; node = node->next) { |
| 2044 hb.group = node; | |
| 6245 | 2045 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) |
| 2046 ret = g_slist_append(ret, buddy); | |
| 2047 } | |
| 7162 | 2048 g_free(hb.name); |
| 9285 | 2049 |
| 6245 | 2050 return ret; |
| 2051 } | |
| 2052 | |
| 6695 | 2053 GaimGroup *gaim_find_group(const char *name) |
| 5228 | 2054 { |
| 2055 GaimBlistNode *node; | |
| 9285 | 2056 |
| 2057 g_return_val_if_fail(gaimbuddylist != NULL, NULL); | |
| 2058 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 2059 | |
| 2060 for (node = gaimbuddylist->root; node != NULL; node = node->next) { | |
| 6695 | 2061 if (!strcmp(((GaimGroup *)node)->name, name)) |
| 2062 return (GaimGroup *)node; | |
| 5228 | 2063 } |
| 9285 | 2064 |
| 5228 | 2065 return NULL; |
| 2066 } | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2067 |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2068 GaimChat * |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2069 gaim_blist_find_chat(GaimAccount *account, const char *name) |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2070 { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2071 char *chat_name; |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2072 GaimChat *chat; |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2073 GaimPlugin *prpl; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2074 GaimPluginProtocolInfo *prpl_info = NULL; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2075 struct proto_chat_entry *pce; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2076 GaimBlistNode *node, *group; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2077 GList *parts; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2078 |
| 9285 | 2079 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
| 2080 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 2081 | |
| 2082 if (!gaim_account_is_connected(account)) | |
| 7970 | 2083 return NULL; |
| 2084 | |
| 7999 | 2085 prpl = gaim_find_prpl(gaim_account_get_protocol_id(account)); |
| 2086 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
| 2087 | |
| 9285 | 2088 if (prpl_info->find_blist_chat != NULL) |
| 7999 | 2089 return prpl_info->find_blist_chat(account, name); |
| 2090 | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2091 for (group = gaimbuddylist->root; group != NULL; group = group->next) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2092 for (node = group->child; node != NULL; node = node->next) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2093 if (GAIM_BLIST_NODE_IS_CHAT(node)) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2094 |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2095 chat = (GaimChat*)node; |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2096 |
| 9285 | 2097 if (account != chat->account) |
| 7970 | 2098 continue; |
| 2099 | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2100 parts = prpl_info->chat_info( |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2101 gaim_account_get_connection(chat->account)); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2102 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2103 pce = parts->data; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2104 chat_name = g_hash_table_lookup(chat->components, |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2105 pce->identifier); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2106 |
| 9153 | 2107 if (chat->account == account && chat_name != NULL && |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2108 name != NULL && !strcmp(chat_name, name)) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2109 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2110 return chat; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2111 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2112 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2113 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2114 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2115 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2116 return NULL; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2117 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2118 |
| 6695 | 2119 GaimGroup * |
| 7125 | 2120 gaim_chat_get_group(GaimChat *chat) |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2121 { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2122 g_return_val_if_fail(chat != NULL, NULL); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2123 |
| 6695 | 2124 return (GaimGroup *)(((GaimBlistNode *)chat)->parent); |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2125 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
2126 |
| 9285 | 2127 GaimContact *gaim_buddy_get_contact(GaimBuddy *buddy) |
| 2128 { | |
| 2129 g_return_val_if_fail(buddy != NULL, NULL); | |
| 2130 | |
| 2131 return (GaimContact*)((GaimBlistNode*)buddy)->parent; | |
| 2132 } | |
| 2133 | |
| 9949 | 2134 GaimPresence *gaim_buddy_get_presence(const GaimBuddy *buddy) |
| 2135 { | |
| 2136 g_return_val_if_fail(buddy != NULL, NULL); | |
| 2137 return buddy->presence; | |
| 2138 } | |
| 2139 | |
| 2140 | |
| 6695 | 2141 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy) |
| 5228 | 2142 { |
| 9285 | 2143 g_return_val_if_fail(buddy != NULL, NULL); |
|
6706
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
2144 |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
2145 if (((GaimBlistNode *)buddy)->parent == NULL) |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
2146 return NULL; |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
2147 |
| 6695 | 2148 return (GaimGroup *)(((GaimBlistNode*)buddy)->parent->parent); |
| 5228 | 2149 } |
| 2150 | |
| 9285 | 2151 GSList *gaim_group_get_accounts(GaimGroup *group) |
| 5228 | 2152 { |
| 2153 GSList *l = NULL; | |
| 6695 | 2154 GaimBlistNode *gnode, *cnode, *bnode; |
| 2155 | |
| 9285 | 2156 gnode = (GaimBlistNode *)group; |
| 2157 | |
| 2158 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
| 6695 | 2159 if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
| 9285 | 2160 if (!g_slist_find(l, ((GaimChat *)cnode)->account)) |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2161 l = g_slist_append(l, ((GaimChat *)cnode)->account); |
| 9285 | 2162 } else if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { |
| 2163 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 2164 if (GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 2165 if (!g_slist_find(l, ((GaimBuddy *)bnode)->account)) | |
| 6695 | 2166 l = g_slist_append(l, ((GaimBuddy *)bnode)->account); |
| 2167 } | |
| 2168 } | |
| 2169 } | |
| 5228 | 2170 } |
| 6695 | 2171 |
| 5228 | 2172 return l; |
| 2173 } | |
| 2174 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2175 void gaim_blist_add_account(GaimAccount *account) |
| 5234 | 2176 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2177 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 6695 | 2178 GaimBlistNode *gnode, *cnode, *bnode; |
| 5234 | 2179 |
| 9285 | 2180 g_return_if_fail(gaimbuddylist != NULL); |
| 2181 | |
| 2182 if (!ops || !ops->update) | |
| 6695 | 2183 return; |
| 2184 | |
| 9285 | 2185 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
| 2186 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 5234 | 2187 continue; |
| 9285 | 2188 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
| 2189 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 6956 | 2190 gboolean recompute = FALSE; |
| 9285 | 2191 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
| 2192 if (GAIM_BLIST_NODE_IS_BUDDY(bnode) && | |
| 6695 | 2193 ((GaimBuddy*)bnode)->account == account) { |
| 6956 | 2194 recompute = TRUE; |
| 6695 | 2195 ((GaimContact*)cnode)->currentsize++; |
| 9285 | 2196 if (((GaimContact*)cnode)->currentsize == 1) |
| 6695 | 2197 ((GaimGroup*)gnode)->currentsize++; |
| 2198 ops->update(gaimbuddylist, bnode); | |
| 2199 } | |
| 2200 } | |
| 9285 | 2201 if (recompute || |
| 8960 | 2202 gaim_blist_node_get_bool(cnode, "show_offline")) { |
| 10378 | 2203 gaim_contact_invalidate_priority_buddy((GaimContact*)cnode); |
| 6956 | 2204 ops->update(gaimbuddylist, cnode); |
| 2205 } | |
| 9285 | 2206 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode) && |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2207 ((GaimChat*)cnode)->account == account) { |
| 6901 | 2208 ((GaimGroup *)gnode)->online++; |
| 2209 ((GaimGroup *)gnode)->currentsize++; | |
| 2210 ops->update(gaimbuddylist, cnode); | |
| 5234 | 2211 } |
| 2212 } | |
| 6695 | 2213 ops->update(gaimbuddylist, gnode); |
| 5234 | 2214 } |
| 2215 } | |
| 2216 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2217 void gaim_blist_remove_account(GaimAccount *account) |
| 5228 | 2218 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2219 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 6695 | 2220 GaimBlistNode *gnode, *cnode, *bnode; |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2221 GaimBuddy *buddy; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2222 GaimChat *chat; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2223 GaimContact *contact; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2224 GaimGroup *group; |
| 5234 | 2225 |
| 9285 | 2226 g_return_if_fail(gaimbuddylist != NULL); |
| 2227 | |
| 2228 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
| 2229 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 5234 | 2230 continue; |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2231 |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2232 group = (GaimGroup *)gnode; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2233 |
| 9285 | 2234 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
| 2235 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 10727 | 2236 gboolean recompute = FALSE; |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2237 contact = (GaimContact *)cnode; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2238 |
| 9285 | 2239 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
| 2240 if (!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 6695 | 2241 continue; |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2242 |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2243 buddy = (GaimBuddy *)bnode; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2244 if (account == buddy->account) { |
| 10557 | 2245 GaimPresence *presence; |
| 6957 | 2246 recompute = TRUE; |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2247 |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2248 presence = gaim_buddy_get_presence(buddy); |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2249 |
| 10728 | 2250 if(gaim_presence_is_online(presence)) { |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2251 contact->online--; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2252 if (contact->online == 0) |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2253 group->online--; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2254 |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2255 gaim_blist_node_set_int(&buddy->node, |
| 10475 | 2256 "last_seen", time(NULL)); |
| 6695 | 2257 } |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2258 |
| 10728 | 2259 contact->currentsize--; |
| 2260 if (contact->currentsize == 0) | |
| 2261 group->currentsize--; | |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2262 |
| 10557 | 2263 gaim_presence_set_status_active(presence, "offline", TRUE); |
| 2264 | |
| 9285 | 2265 if (ops && ops->remove) |
| 6695 | 2266 ops->remove(gaimbuddylist, bnode); |
| 2267 } | |
| 5234 | 2268 } |
| 9285 | 2269 if (recompute) { |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2270 gaim_contact_invalidate_priority_buddy(contact); |
| 9285 | 2271 if (ops && ops->update) |
| 6983 | 2272 ops->update(gaimbuddylist, cnode); |
| 2273 } | |
|
10726
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2274 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2275 chat = (GaimChat *)cnode; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2276 |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2277 if(chat->account == account) { |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2278 group->currentsize--; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2279 group->online--; |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2280 |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2281 if (ops && ops->remove) |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2282 ops->remove(gaimbuddylist, cnode); |
|
00e3dc1a0206
[gaim-migrate @ 12326]
Luke Schierer <lschiere@pidgin.im>
parents:
10704
diff
changeset
|
2283 } |
| 5228 | 2284 } |
| 2285 } | |
| 2286 } | |
| 2287 } | |
| 2288 | |
| 9285 | 2289 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account) |
| 2290 { | |
| 9787 | 2291 GaimBlistNode *cnode; |
| 9285 | 2292 for (cnode = ((GaimBlistNode *)g)->child; cnode; cnode = cnode->next) { |
| 2293 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 9787 | 2294 if(gaim_contact_on_account((GaimContact *) cnode, account)) |
| 2295 return TRUE; | |
| 9285 | 2296 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2297 GaimChat *chat = (GaimChat *)cnode; |
| 9285 | 2298 if ((!account && gaim_account_is_connected(chat->account)) |
| 6695 | 2299 || chat->account == account) |
| 2300 return TRUE; | |
| 2301 } | |
| 5228 | 2302 } |
| 2303 return FALSE; | |
| 2304 } | |
| 2305 | |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2306 void |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2307 gaim_blist_request_add_buddy(GaimAccount *account, const char *username, |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2308 const char *group, const char *alias) |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2309 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2310 GaimBlistUiOps *ui_ops; |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2311 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2312 ui_ops = gaim_blist_get_ui_ops(); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2313 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2314 if (ui_ops != NULL && ui_ops->request_add_buddy != NULL) |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2315 ui_ops->request_add_buddy(account, username, group, alias); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2316 } |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2317 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2318 void |
| 9754 | 2319 gaim_blist_request_add_chat(GaimAccount *account, GaimGroup *group, |
| 2320 const char *alias, const char *name) | |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2321 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2322 GaimBlistUiOps *ui_ops; |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2323 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2324 ui_ops = gaim_blist_get_ui_ops(); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2325 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2326 if (ui_ops != NULL && ui_ops->request_add_chat != NULL) |
| 9754 | 2327 ui_ops->request_add_chat(account, group, alias, name); |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2328 } |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2329 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2330 void |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2331 gaim_blist_request_add_group(void) |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2332 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2333 GaimBlistUiOps *ui_ops; |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2334 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2335 ui_ops = gaim_blist_get_ui_ops(); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2336 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2337 if (ui_ops != NULL && ui_ops->request_add_group != NULL) |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2338 ui_ops->request_add_group(); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2339 } |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2340 |
| 10430 | 2341 static void |
| 2342 gaim_blist_node_setting_free(gpointer data) | |
| 7693 | 2343 { |
| 10430 | 2344 GaimValue *value; |
| 2345 | |
| 2346 value = (GaimValue *)data; | |
| 2347 | |
| 2348 gaim_value_destroy(value); | |
| 7693 | 2349 } |
| 2350 | |
| 9285 | 2351 static void gaim_blist_node_initialize_settings(GaimBlistNode *node) |
| 7693 | 2352 { |
| 9285 | 2353 if (node->settings) |
| 5228 | 2354 return; |
| 7693 | 2355 |
| 2356 node->settings = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, | |
| 2357 (GDestroyNotify)gaim_blist_node_setting_free); | |
| 2358 } | |
| 2359 | |
| 2360 void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key) | |
| 2361 { | |
| 2362 g_return_if_fail(node != NULL); | |
| 2363 g_return_if_fail(node->settings != NULL); | |
| 2364 g_return_if_fail(key != NULL); | |
| 2365 | |
| 2366 g_hash_table_remove(node->settings, key); | |
| 9285 | 2367 |
| 10704 | 2368 gaim_blist_schedule_save(); |
| 5228 | 2369 } |
| 2370 | |
| 10430 | 2371 void |
| 10548 | 2372 gaim_blist_node_set_flags(GaimBlistNode *node, GaimBlistNodeFlags flags) |
| 2373 { | |
| 2374 g_return_if_fail(node != NULL); | |
| 2375 | |
| 2376 node->flags = flags; | |
| 2377 } | |
| 2378 | |
| 2379 GaimBlistNodeFlags | |
| 2380 gaim_blist_node_get_flags(GaimBlistNode *node) | |
| 2381 { | |
| 2382 g_return_val_if_fail(node != NULL, 0); | |
| 2383 | |
| 2384 return node->flags; | |
| 2385 } | |
| 2386 | |
| 2387 void | |
| 10430 | 2388 gaim_blist_node_set_bool(GaimBlistNode* node, const char *key, gboolean data) |
| 7693 | 2389 { |
| 10430 | 2390 GaimValue *value; |
| 7693 | 2391 |
| 2392 g_return_if_fail(node != NULL); | |
| 2393 g_return_if_fail(node->settings != NULL); | |
| 2394 g_return_if_fail(key != NULL); | |
| 2395 | |
| 10430 | 2396 value = gaim_value_new(GAIM_TYPE_BOOLEAN); |
| 2397 gaim_value_set_boolean(value, data); | |
| 2398 | |
| 2399 g_hash_table_replace(node->settings, g_strdup(key), value); | |
| 9285 | 2400 |
| 10704 | 2401 gaim_blist_schedule_save(); |
| 7693 | 2402 } |
| 2403 | |
| 10430 | 2404 gboolean |
| 2405 gaim_blist_node_get_bool(GaimBlistNode* node, const char *key) | |
| 7693 | 2406 { |
| 10430 | 2407 GaimValue *value; |
| 7693 | 2408 |
| 2409 g_return_val_if_fail(node != NULL, FALSE); | |
| 2410 g_return_val_if_fail(node->settings != NULL, FALSE); | |
| 2411 g_return_val_if_fail(key != NULL, FALSE); | |
| 2412 | |
| 10430 | 2413 value = g_hash_table_lookup(node->settings, key); |
| 2414 | |
| 2415 if (value == NULL) | |
| 7849 | 2416 return FALSE; |
| 2417 | |
| 10430 | 2418 g_return_val_if_fail(gaim_value_get_type(value) == GAIM_TYPE_BOOLEAN, FALSE); |
| 2419 | |
| 2420 return gaim_value_get_boolean(value); | |
| 5228 | 2421 } |
| 2422 | |
| 10430 | 2423 void |
| 2424 gaim_blist_node_set_int(GaimBlistNode* node, const char *key, int data) | |
| 7693 | 2425 { |
| 10430 | 2426 GaimValue *value; |
| 7693 | 2427 |
| 2428 g_return_if_fail(node != NULL); | |
| 2429 g_return_if_fail(node->settings != NULL); | |
| 2430 g_return_if_fail(key != NULL); | |
| 2431 | |
| 10430 | 2432 value = gaim_value_new(GAIM_TYPE_INT); |
| 2433 gaim_value_set_int(value, data); | |
| 2434 | |
| 2435 g_hash_table_replace(node->settings, g_strdup(key), value); | |
| 9285 | 2436 |
| 10704 | 2437 gaim_blist_schedule_save(); |
| 7693 | 2438 } |
| 2439 | |
| 10430 | 2440 int |
| 2441 gaim_blist_node_get_int(GaimBlistNode* node, const char *key) | |
| 7693 | 2442 { |
| 10430 | 2443 GaimValue *value; |
| 7693 | 2444 |
| 2445 g_return_val_if_fail(node != NULL, 0); | |
| 2446 g_return_val_if_fail(node->settings != NULL, 0); | |
| 2447 g_return_val_if_fail(key != NULL, 0); | |
| 2448 | |
| 10430 | 2449 value = g_hash_table_lookup(node->settings, key); |
| 2450 | |
| 2451 if (value == NULL) | |
| 7849 | 2452 return 0; |
| 2453 | |
| 10430 | 2454 g_return_val_if_fail(gaim_value_get_type(value) == GAIM_TYPE_INT, 0); |
| 2455 | |
| 2456 return gaim_value_get_int(value); | |
| 7693 | 2457 } |
| 2458 | |
| 10430 | 2459 void |
| 2460 gaim_blist_node_set_string(GaimBlistNode* node, const char *key, const char *data) | |
| 5906 | 2461 { |
| 10430 | 2462 GaimValue *value; |
| 7693 | 2463 |
| 2464 g_return_if_fail(node != NULL); | |
| 2465 g_return_if_fail(node->settings != NULL); | |
| 2466 g_return_if_fail(key != NULL); | |
| 2467 | |
| 10430 | 2468 value = gaim_value_new(GAIM_TYPE_STRING); |
| 2469 gaim_value_set_string(value, data); | |
| 2470 | |
| 2471 g_hash_table_replace(node->settings, g_strdup(key), value); | |
| 9285 | 2472 |
| 10704 | 2473 gaim_blist_schedule_save(); |
| 7693 | 2474 } |
| 2475 | |
| 10430 | 2476 const char * |
| 2477 gaim_blist_node_get_string(GaimBlistNode* node, const char *key) | |
| 7693 | 2478 { |
| 10430 | 2479 GaimValue *value; |
| 7693 | 2480 |
| 2481 g_return_val_if_fail(node != NULL, NULL); | |
| 2482 g_return_val_if_fail(node->settings != NULL, NULL); | |
| 2483 g_return_val_if_fail(key != NULL, NULL); | |
| 2484 | |
| 10430 | 2485 value = g_hash_table_lookup(node->settings, key); |
| 2486 | |
| 2487 if (value == NULL) | |
| 7849 | 2488 return NULL; |
| 2489 | |
| 10430 | 2490 g_return_val_if_fail(gaim_value_get_type(value) == GAIM_TYPE_STRING, NULL); |
| 2491 | |
| 2492 return gaim_value_get_string(value); | |
| 7693 | 2493 } |
| 2494 | |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2495 GList * |
|
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2496 gaim_blist_node_get_extended_menu(GaimBlistNode *n) |
| 7693 | 2497 { |
|
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2498 GList *menu = NULL; |
| 9030 | 2499 |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2500 g_return_val_if_fail(n != NULL, NULL); |
| 9030 | 2501 |
| 2502 gaim_signal_emit(gaim_blist_get_handle(), | |
| 2503 "blist-node-extended-menu", | |
| 2504 n, &menu); | |
|
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2505 return menu; |
|
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2506 } |
|
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2507 |
| 9030 | 2508 GaimBlistNodeAction * |
| 2509 gaim_blist_node_action_new(char *label, | |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2510 void (*callback)(GaimBlistNode *, gpointer), |
|
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2511 gpointer data, GList *children) |
| 9030 | 2512 { |
| 2513 GaimBlistNodeAction *act = g_new0(GaimBlistNodeAction, 1); | |
| 2514 act->label = label; | |
| 2515 act->callback = callback; | |
| 2516 act->data = data; | |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
2517 act->children = children; |
| 9030 | 2518 return act; |
| 8952 | 2519 } |
| 2520 | |
| 9285 | 2521 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline) |
| 2522 { | |
| 2523 if (!group) | |
| 5228 | 2524 return 0; |
| 2525 | |
| 5277 | 2526 return offline ? group->totalsize : group->currentsize; |
| 5228 | 2527 } |
| 2528 | |
| 9285 | 2529 int gaim_blist_get_group_online_count(GaimGroup *group) |
| 2530 { | |
| 2531 if (!group) | |
| 5228 | 2532 return 0; |
| 2533 | |
| 5277 | 2534 return group->online; |
| 5228 | 2535 } |
| 2536 | |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2537 void |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2538 gaim_blist_set_ui_ops(GaimBlistUiOps *ops) |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2539 { |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2540 blist_ui_ops = ops; |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2541 } |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2542 |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2543 GaimBlistUiOps * |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2544 gaim_blist_get_ui_ops(void) |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2545 { |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2546 return blist_ui_ops; |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2547 } |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2548 |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2549 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2550 void * |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2551 gaim_blist_get_handle(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2552 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2553 static int handle; |
| 5228 | 2554 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2555 return &handle; |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2556 } |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2557 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2558 void |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2559 gaim_blist_init(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2560 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2561 void *handle = gaim_blist_get_handle(); |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2562 |
|
11033
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10945
diff
changeset
|
2563 gaim_debug_register_category("blist"); |
|
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10945
diff
changeset
|
2564 |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2565 gaim_signal_register(handle, "buddy-away", |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2566 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2567 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2568 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2569 |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2570 gaim_signal_register(handle, "buddy-back", |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2571 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2572 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2573 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2574 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2575 gaim_signal_register(handle, "buddy-idle", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2576 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2577 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2578 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2579 gaim_signal_register(handle, "buddy-unidle", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2580 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2581 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2582 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
9109
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2583 gaim_signal_register(handle, "buddy-idle-updated", |
|
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2584 gaim_marshal_VOID__POINTER, NULL, 1, |
|
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2585 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2586 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2587 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2588 gaim_signal_register(handle, "buddy-signed-on", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2589 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2590 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2591 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2592 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2593 gaim_signal_register(handle, "buddy-signed-off", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2594 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2595 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2596 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2597 |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2598 gaim_signal_register(handle, "update-idle", gaim_marshal_VOID, NULL, 0); |
| 9030 | 2599 |
| 2600 gaim_signal_register(handle, "blist-node-extended-menu", | |
|
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2601 gaim_marshal_VOID__POINTER_POINTER, NULL, 2, |
|
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2602 gaim_value_new(GAIM_TYPE_SUBTYPE, |
| 9030 | 2603 GAIM_SUBTYPE_BLIST_NODE), |
| 8952 | 2604 gaim_value_new(GAIM_TYPE_BOXED, "GList **")); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2605 } |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2606 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2607 void |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2608 gaim_blist_uninit(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2609 { |
| 10428 | 2610 if (save_timer != 0) |
| 2611 { | |
| 2612 gaim_timeout_remove(save_timer); | |
| 2613 save_timer = 0; | |
| 9285 | 2614 gaim_blist_sync(); |
| 2615 } | |
| 2616 | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2617 gaim_signals_unregister_by_instance(gaim_blist_get_handle()); |
|
11033
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10945
diff
changeset
|
2618 |
|
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10945
diff
changeset
|
2619 gaim_debug_unregister_category("blist"); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2620 } |
