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