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