Mercurial > pidgin
annotate src/blist.c @ 6778:b8bc8dd411cc
[gaim-migrate @ 7316]
memleak fixen
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Sun, 07 Sep 2003 15:55:28 +0000 |
| parents | 46e1c07f4de5 |
| children | ab5dd35443c6 |
| rev | line source |
|---|---|
| 5228 | 1 /* |
| 2 * gaim | |
| 3 * | |
| 4 * Copyright (C) 2003, Sean Egan <sean.egan@binghamton.edu> | |
| 5 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
| 6 * | |
| 7 * This program is free software; you can redistribute it and/or modify | |
| 8 * it under the terms of the GNU General Public License as published by | |
| 9 * the Free Software Foundation; either version 2 of the License, or | |
| 10 * (at your option) any later version. | |
| 11 * | |
| 12 * This program is distributed in the hope that it will be useful, | |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 * GNU General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU General Public License | |
| 18 * along with this program; if not, write to the Free Software | |
| 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 20 * | |
| 21 */ | |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
22 #include "internal.h" |
| 5228 | 23 #include "blist.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
24 #include "conversation.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
25 #include "debug.h" |
| 6034 | 26 #include "multi.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" |
| 5228 | 34 |
| 35 #define PATHSIZE 1024 | |
| 36 | |
| 37 struct gaim_buddy_list *gaimbuddylist = NULL; | |
| 38 static struct gaim_blist_ui_ops *blist_ui_ops = NULL; | |
| 39 | |
| 40 /***************************************************************************** | |
| 41 * Private Utility functions * | |
| 42 *****************************************************************************/ | |
| 43 static GaimBlistNode *gaim_blist_get_last_sibling(GaimBlistNode *node) | |
| 44 { | |
| 45 GaimBlistNode *n = node; | |
| 46 if (!n) | |
| 47 return NULL; | |
| 48 while (n->next) | |
| 49 n = n->next; | |
| 50 return n; | |
| 51 } | |
| 6695 | 52 |
| 5228 | 53 static GaimBlistNode *gaim_blist_get_last_child(GaimBlistNode *node) |
| 54 { | |
| 55 if (!node) | |
| 56 return NULL; | |
| 57 return gaim_blist_get_last_sibling(node->child); | |
| 58 } | |
| 59 | |
| 5247 | 60 struct _gaim_hbuddy { |
| 61 char *name; | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
62 GaimAccount *account; |
| 5758 | 63 GaimBlistNode *group; |
| 5247 | 64 }; |
| 65 | |
| 66 static guint _gaim_blist_hbuddy_hash (struct _gaim_hbuddy *hb) | |
| 67 { | |
| 68 return g_str_hash(hb->name); | |
| 69 } | |
| 70 | |
| 71 static guint _gaim_blist_hbuddy_equal (struct _gaim_hbuddy *hb1, struct _gaim_hbuddy *hb2) | |
| 72 { | |
| 5758 | 73 return ((!strcmp(hb1->name, hb2->name)) && hb1->account == hb2->account && hb1->group == hb2->group); |
| 5247 | 74 } |
| 75 | |
| 6742 | 76 static void _gaim_blist_hbuddy_free_key(struct _gaim_hbuddy *hb) |
| 77 { | |
| 78 g_free(hb->name); | |
| 79 g_free(hb); | |
| 80 } | |
| 81 | |
| 6006 | 82 static void blist_pref_cb(const char *name, GaimPrefType typ, gpointer value, gpointer data) |
| 83 { | |
| 6012 | 84 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
| 6695 | 85 GaimBlistNode *gnode, *cnode, *bnode; |
| 6012 | 86 |
| 87 if (!ops) | |
| 88 return; | |
| 89 | |
| 6695 | 90 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
| 91 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 6012 | 92 continue; |
| 6695 | 93 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 94 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 95 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 96 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 97 continue; | |
| 98 ops->update(gaimbuddylist, bnode); | |
| 99 } | |
| 100 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
| 101 ops->update(gaimbuddylist, cnode); | |
| 102 } | |
| 6012 | 103 } |
| 104 } | |
| 6006 | 105 } |
| 106 | |
| 5228 | 107 /***************************************************************************** |
| 108 * Public API functions * | |
| 109 *****************************************************************************/ | |
| 110 | |
| 111 struct gaim_buddy_list *gaim_blist_new() | |
| 112 { | |
| 113 struct gaim_buddy_list *gbl = g_new0(struct gaim_buddy_list, 1); | |
| 114 | |
| 115 gbl->ui_ops = gaim_get_blist_ui_ops(); | |
| 116 | |
| 6742 | 117 gbl->buddies = g_hash_table_new_full((GHashFunc)_gaim_blist_hbuddy_hash, |
| 118 (GEqualFunc)_gaim_blist_hbuddy_equal, | |
| 119 (GDestroyNotify)_gaim_blist_hbuddy_free_key, NULL); | |
| 5247 | 120 |
| 5228 | 121 if (gbl->ui_ops != NULL && gbl->ui_ops->new_list != NULL) |
| 122 gbl->ui_ops->new_list(gbl); | |
| 123 | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
124 gaim_prefs_connect_callback("/core/buddies/use_server_alias", |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
125 blist_pref_cb, NULL); |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
126 |
| 6006 | 127 |
| 5228 | 128 return gbl; |
| 129 } | |
| 130 | |
| 131 void | |
| 132 gaim_set_blist(struct gaim_buddy_list *list) | |
| 133 { | |
| 134 gaimbuddylist = list; | |
| 135 } | |
| 136 | |
| 137 struct gaim_buddy_list * | |
| 138 gaim_get_blist(void) | |
| 139 { | |
| 140 return gaimbuddylist; | |
| 141 } | |
| 142 | |
| 6695 | 143 void gaim_blist_show () |
| 5228 | 144 { |
| 145 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 146 if (ops) | |
| 147 ops->show(gaimbuddylist); | |
| 148 } | |
| 149 | |
| 150 void gaim_blist_destroy() | |
| 151 { | |
| 152 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 153 if (ops) | |
| 154 ops->destroy(gaimbuddylist); | |
| 155 } | |
| 156 | |
| 157 void gaim_blist_set_visible (gboolean show) | |
| 158 { | |
| 159 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 160 if (ops) | |
| 161 ops->set_visible(gaimbuddylist, show); | |
| 162 } | |
| 163 | |
| 6695 | 164 void gaim_blist_update_buddy_status (GaimBuddy *buddy, int status) |
| 5228 | 165 { |
|
5266
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
166 struct gaim_blist_ui_ops *ops; |
|
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
167 |
|
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
168 if (buddy->uc == status) |
|
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
169 return; |
|
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
170 |
|
b3a03b86b09b
[gaim-migrate @ 5638]
Christian Hammond <chipx86@chipx86.com>
parents:
5259
diff
changeset
|
171 ops = gaimbuddylist->ui_ops; |
| 5228 | 172 |
| 5305 | 173 if((status & UC_UNAVAILABLE) != (buddy->uc & UC_UNAVAILABLE)) { |
| 174 if(status & UC_UNAVAILABLE) | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
175 gaim_signal_emit(gaim_blist_get_handle(), "buddy-away", buddy); |
| 5305 | 176 else |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
177 gaim_signal_emit(gaim_blist_get_handle(), "buddy-back", buddy); |
| 5305 | 178 } |
| 5228 | 179 |
| 5305 | 180 buddy->uc = status; |
| 5228 | 181 if (ops) |
| 182 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 183 } | |
| 184 | |
| 6695 | 185 static gboolean presence_update_timeout_cb(GaimBuddy *buddy) { |
| 5228 | 186 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
|
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
187 GaimConversation *conv; |
|
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
188 |
|
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
189 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); |
| 5228 | 190 |
| 191 if(buddy->present == GAIM_BUDDY_SIGNING_ON) { | |
| 192 buddy->present = GAIM_BUDDY_ONLINE; | |
| 193 } else if(buddy->present == GAIM_BUDDY_SIGNING_OFF) { | |
| 194 buddy->present = GAIM_BUDDY_OFFLINE; | |
| 195 } | |
| 196 | |
| 197 buddy->timer = 0; | |
| 198 | |
| 199 if (ops) | |
| 200 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 201 | |
|
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
202 if (conv) { |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
203 if (buddy->present == GAIM_BUDDY_ONLINE) |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
204 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_ONLINE); |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
205 else if (buddy->present == GAIM_BUDDY_OFFLINE) |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
206 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_OFFLINE); |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
207 } |
|
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
208 |
| 5228 | 209 return FALSE; |
| 210 } | |
| 211 | |
| 6695 | 212 void gaim_blist_update_buddy_presence(GaimBuddy *buddy, int presence) { |
| 5228 | 213 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
| 214 gboolean do_timer = FALSE; | |
| 215 | |
| 216 if (!GAIM_BUDDY_IS_ONLINE(buddy) && presence) { | |
| 217 buddy->present = GAIM_BUDDY_SIGNING_ON; | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
218 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-on", buddy); |
| 5228 | 219 do_timer = TRUE; |
| 6695 | 220 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online++; |
| 221 if(((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 1) | |
| 222 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online++; | |
| 5228 | 223 } else if(GAIM_BUDDY_IS_ONLINE(buddy) && !presence) { |
| 224 buddy->present = GAIM_BUDDY_SIGNING_OFF; | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
225 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-off", buddy); |
| 5228 | 226 do_timer = TRUE; |
| 6695 | 227 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online--; |
| 228 if(((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 0) | |
| 229 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online--; | |
| 5228 | 230 } |
| 231 | |
| 232 if(do_timer) { | |
| 233 if(buddy->timer > 0) | |
| 234 g_source_remove(buddy->timer); | |
| 235 buddy->timer = g_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
| 236 } | |
| 237 | |
| 238 if (ops) | |
| 239 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 240 } | |
| 241 | |
| 242 | |
| 6695 | 243 void gaim_blist_update_buddy_idle (GaimBuddy *buddy, int idle) |
| 5228 | 244 { |
| 245 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 246 buddy->idle = idle; | |
| 247 if (ops) | |
| 248 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 249 } | |
| 6695 | 250 |
| 251 void gaim_blist_update_buddy_evil (GaimBuddy *buddy, int warning) | |
| 5228 | 252 { |
| 253 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 254 buddy->evil = warning; | |
| 255 if (ops) | |
| 256 ops->update(gaimbuddylist,(GaimBlistNode*)buddy); | |
| 257 } | |
| 6695 | 258 |
| 259 void gaim_blist_update_buddy_icon(GaimBuddy *buddy) { | |
| 5228 | 260 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
| 261 if(ops) | |
| 262 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 263 } | |
| 6695 | 264 |
| 265 void gaim_blist_rename_buddy (GaimBuddy *buddy, const char *name) | |
| 5228 | 266 { |
| 267 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 5634 | 268 g_free(buddy->name); |
| 5228 | 269 buddy->name = g_strdup(name); |
| 270 if (ops) | |
| 271 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 272 } | |
| 5234 | 273 |
| 6695 | 274 void gaim_blist_alias_chat(GaimBlistChat *chat, const char *alias) |
| 5234 | 275 { |
| 276 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 277 | |
| 5237 | 278 g_free(chat->alias); |
| 5234 | 279 |
| 5237 | 280 if(alias && strlen(alias)) |
| 281 chat->alias = g_strdup(alias); | |
| 282 else | |
| 283 chat->alias = NULL; | |
| 284 | |
| 5234 | 285 if(ops) |
| 286 ops->update(gaimbuddylist, (GaimBlistNode*)chat); | |
| 287 } | |
| 288 | |
| 6695 | 289 void gaim_blist_alias_buddy (GaimBuddy *buddy, const char *alias) |
| 5228 | 290 { |
| 291 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
|
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5634
diff
changeset
|
292 GaimConversation *conv; |
| 5228 | 293 |
| 294 g_free(buddy->alias); | |
| 295 | |
| 296 if(alias && strlen(alias)) | |
| 297 buddy->alias = g_strdup(alias); | |
| 298 else | |
| 299 buddy->alias = NULL; | |
| 300 | |
| 301 if (ops) | |
| 302 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 303 | |
| 304 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); | |
| 305 | |
| 306 if (conv) | |
| 307 gaim_conversation_autoset_title(conv); | |
| 308 } | |
| 309 | |
| 6695 | 310 void gaim_blist_server_alias_buddy (GaimBuddy *buddy, const char *alias) |
| 6058 | 311 { |
| 312 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 313 GaimConversation *conv; | |
| 314 | |
| 315 g_free(buddy->server_alias); | |
| 316 | |
| 317 if(alias && strlen(alias) && g_utf8_validate(alias, -1, NULL)) | |
| 318 buddy->server_alias = g_strdup(alias); | |
| 319 else | |
| 320 buddy->server_alias = NULL; | |
| 321 | |
| 322 if (ops) | |
| 323 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 324 | |
| 325 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); | |
| 326 | |
| 327 if (conv) | |
| 328 gaim_conversation_autoset_title(conv); | |
| 329 } | |
| 330 | |
| 6695 | 331 void gaim_blist_rename_group(GaimGroup *group, const char *name) |
| 5228 | 332 { |
| 333 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 6695 | 334 GaimGroup *dest_group; |
| 5346 | 335 GaimBlistNode *prev, *child, *next; |
| 336 GSList *accts; | |
| 337 | |
| 338 if(!name || !strlen(name) || !strcmp(name, group->name)) { | |
| 339 /* nothing to do here */ | |
| 340 return; | |
| 341 } else if((dest_group = gaim_find_group(name))) { | |
| 342 /* here we're merging two groups */ | |
| 343 prev = gaim_blist_get_last_child((GaimBlistNode*)dest_group); | |
| 344 child = ((GaimBlistNode*)group)->child; | |
| 345 | |
| 346 while(child) | |
| 347 { | |
| 348 next = child->next; | |
| 6695 | 349 if(GAIM_BLIST_NODE_IS_CONTACT(child)) { |
| 350 GaimBlistNode *bnode; | |
| 351 gaim_blist_add_contact((GaimContact *)child, dest_group, prev); | |
| 352 for(bnode = child->child; bnode; bnode = bnode->next) | |
| 353 gaim_blist_add_buddy((GaimBuddy*)bnode, (GaimContact*)child, | |
| 354 NULL, bnode->prev); | |
| 5346 | 355 prev = child; |
| 356 } else if(GAIM_BLIST_NODE_IS_CHAT(child)) { | |
| 6695 | 357 gaim_blist_add_chat((GaimBlistChat *)child, dest_group, prev); |
| 5346 | 358 prev = child; |
| 359 } else { | |
| 360 gaim_debug(GAIM_DEBUG_ERROR, "blist", | |
| 361 "Unknown child type in group %s\n", group->name); | |
| 362 } | |
| 363 child = next; | |
| 364 } | |
| 365 for (accts = gaim_group_get_accounts(group); accts; accts = g_slist_remove(accts, accts->data)) { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
366 GaimAccount *account = accts->data; |
| 5346 | 367 serv_rename_group(account->gc, group, name); |
| 368 } | |
| 369 gaim_blist_remove_group(group); | |
| 370 } else { | |
| 371 /* a simple rename */ | |
| 372 for (accts = gaim_group_get_accounts(group); accts; accts = g_slist_remove(accts, accts->data)) { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
373 GaimAccount *account = accts->data; |
| 5346 | 374 serv_rename_group(account->gc, group, name); |
| 375 } | |
| 376 g_free(group->name); | |
| 377 group->name = g_strdup(name); | |
| 378 if (ops) | |
| 379 ops->update(gaimbuddylist, (GaimBlistNode*)group); | |
| 380 } | |
| 5228 | 381 } |
| 5234 | 382 |
| 6695 | 383 GaimBlistChat *gaim_blist_chat_new(GaimAccount *account, const char *alias, GHashTable *components) |
| 5234 | 384 { |
| 6695 | 385 GaimBlistChat *chat; |
| 5234 | 386 struct gaim_blist_ui_ops *ops; |
| 387 | |
| 5237 | 388 if(!components) |
| 5234 | 389 return NULL; |
| 390 | |
| 6695 | 391 chat = g_new0(GaimBlistChat, 1); |
| 5234 | 392 chat->account = account; |
| 5237 | 393 if(alias && strlen(alias)) |
| 394 chat->alias = g_strdup(alias); | |
| 5234 | 395 chat->components = components; |
| 5906 | 396 chat->settings = g_hash_table_new_full(g_str_hash, g_str_equal, |
| 397 g_free, g_free); | |
| 5234 | 398 |
| 399 ((GaimBlistNode*)chat)->type = GAIM_BLIST_CHAT_NODE; | |
| 400 | |
| 401 ops = gaim_get_blist_ui_ops(); | |
| 402 | |
| 403 if (ops != NULL && ops->new_node != NULL) | |
| 404 ops->new_node((GaimBlistNode *)chat); | |
| 405 | |
| 406 return chat; | |
| 407 } | |
| 408 | |
| 6695 | 409 char *gaim_blist_chat_get_display_name(GaimBlistChat *chat) |
| 6034 | 410 { |
| 411 char *name; | |
| 412 | |
| 413 if(chat->alias){ | |
| 414 name = g_strdup(chat->alias); | |
| 415 } | |
| 416 else{ | |
| 417 GList *parts; | |
| 418 GaimPlugin *prpl; | |
| 419 GaimPluginProtocolInfo *prpl_info; | |
| 420 struct proto_chat_entry *pce; | |
| 421 | |
| 422 prpl = gaim_find_prpl(gaim_account_get_protocol(chat->account)); | |
| 423 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
| 424 | |
| 425 parts = prpl_info->chat_info(chat->account->gc); | |
| 426 | |
| 427 pce = parts->data; | |
| 428 name = g_markup_escape_text(g_hash_table_lookup(chat->components, | |
| 429 pce->identifier), -1); | |
| 430 g_list_free(parts); | |
| 431 } | |
| 432 | |
| 433 return name; | |
| 434 } | |
| 435 | |
| 6695 | 436 GaimBuddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias) |
| 5228 | 437 { |
| 6695 | 438 GaimBuddy *b; |
| 5228 | 439 struct gaim_blist_ui_ops *ops; |
| 440 | |
| 6695 | 441 b = g_new0(GaimBuddy, 1); |
| 5228 | 442 b->account = account; |
| 443 b->name = g_strdup(screenname); | |
| 444 b->alias = g_strdup(alias); | |
| 445 b->settings = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); | |
| 446 ((GaimBlistNode*)b)->type = GAIM_BLIST_BUDDY_NODE; | |
| 447 | |
| 448 ops = gaim_get_blist_ui_ops(); | |
| 449 | |
| 450 if (ops != NULL && ops->new_node != NULL) | |
| 451 ops->new_node((GaimBlistNode *)b); | |
| 452 | |
| 453 return b; | |
| 454 } | |
| 5634 | 455 |
| 6695 | 456 void gaim_blist_add_chat(GaimBlistChat *chat, GaimGroup *group, GaimBlistNode *node) |
| 5234 | 457 { |
| 458 GaimBlistNode *n = node, *cnode = (GaimBlistNode*)chat; | |
| 6695 | 459 GaimGroup *g = group; |
| 5234 | 460 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
| 461 gboolean save = FALSE; | |
| 462 | |
| 6774 | 463 |
| 464 g_return_if_fail(chat != NULL); | |
| 465 g_return_if_fail(GAIM_BLIST_NODE_IS_CHAT((GaimBlistNode*)chat)); | |
| 466 | |
| 5234 | 467 if (!n) { |
| 468 if (!g) { | |
| 469 g = gaim_group_new(_("Chats")); | |
| 5634 | 470 gaim_blist_add_group(g, |
| 471 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 5234 | 472 } |
| 473 } else { | |
| 6695 | 474 g = (GaimGroup*)n->parent; |
| 5234 | 475 } |
| 476 | |
| 477 /* if we're moving to overtop of ourselves, do nothing */ | |
| 478 if(cnode == n) | |
| 479 return; | |
| 480 | |
| 481 if (cnode->parent) { | |
| 482 /* This chat was already in the list and is | |
| 483 * being moved. | |
| 484 */ | |
| 6695 | 485 ((GaimGroup *)cnode->parent)->totalsize--; |
| 5855 | 486 if (gaim_account_is_connected(chat->account)) { |
| 6695 | 487 ((GaimGroup *)cnode->parent)->online--; |
| 488 ((GaimGroup *)cnode->parent)->currentsize--; | |
| 5287 | 489 } |
| 5234 | 490 if(cnode->next) |
| 491 cnode->next->prev = cnode->prev; | |
| 492 if(cnode->prev) | |
| 493 cnode->prev->next = cnode->next; | |
| 494 if(cnode->parent->child == cnode) | |
| 495 cnode->parent->child = cnode->next; | |
| 496 | |
| 497 ops->remove(gaimbuddylist, cnode); | |
| 498 | |
| 499 save = TRUE; | |
| 500 } | |
| 501 | |
| 502 if (n) { | |
| 503 if(n->next) | |
| 504 n->next->prev = cnode; | |
| 505 cnode->next = n->next; | |
| 506 cnode->prev = n; | |
| 507 cnode->parent = n->parent; | |
| 508 n->next = cnode; | |
| 6695 | 509 ((GaimGroup *)n->parent)->totalsize++; |
| 5855 | 510 if (gaim_account_is_connected(chat->account)) { |
| 6695 | 511 ((GaimGroup *)n->parent)->online++; |
| 512 ((GaimGroup *)n->parent)->currentsize++; | |
| 5287 | 513 } |
| 5234 | 514 } else { |
| 5634 | 515 if(((GaimBlistNode*)g)->child) |
| 516 ((GaimBlistNode*)g)->child->prev = cnode; | |
| 517 cnode->next = ((GaimBlistNode*)g)->child; | |
| 518 cnode->prev = NULL; | |
| 5234 | 519 ((GaimBlistNode*)g)->child = cnode; |
| 520 cnode->parent = (GaimBlistNode*)g; | |
| 5277 | 521 g->totalsize++; |
| 5855 | 522 if (gaim_account_is_connected(chat->account)) { |
| 5287 | 523 g->online++; |
| 5277 | 524 g->currentsize++; |
| 5287 | 525 } |
| 5234 | 526 } |
| 527 | |
| 528 if (ops) | |
| 529 ops->update(gaimbuddylist, (GaimBlistNode*)cnode); | |
| 530 if (save) | |
| 531 gaim_blist_save(); | |
| 532 } | |
| 533 | |
| 6695 | 534 void gaim_blist_add_buddy (GaimBuddy *buddy, GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
| 5228 | 535 { |
| 6695 | 536 GaimBlistNode *cnode, *bnode; |
| 537 GaimGroup *g; | |
| 538 GaimContact *c; | |
| 5228 | 539 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
| 6695 | 540 gboolean save = FALSE; |
| 5247 | 541 struct _gaim_hbuddy *hb; |
| 6695 | 542 |
| 543 g_return_if_fail(buddy != NULL); | |
| 6774 | 544 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY((GaimBlistNode*)buddy)); |
| 6695 | 545 |
| 546 bnode = (GaimBlistNode *)buddy; | |
| 5228 | 547 |
| 6695 | 548 /* if we're moving to overtop of ourselves, do nothing */ |
| 549 if(bnode == node || (!node && bnode->parent && | |
| 550 contact && bnode->parent == (GaimBlistNode*)contact | |
| 551 && bnode == bnode->parent->child)) | |
| 552 return; | |
| 553 | |
| 554 if(node && GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
| 555 c = (GaimContact*)node->parent; | |
| 556 g = (GaimGroup*)node->parent->parent; | |
| 557 } else if(contact) { | |
| 558 c = contact; | |
| 559 g = (GaimGroup*)((GaimBlistNode*)c)->parent; | |
| 560 } else { | |
| 561 if(group) { | |
| 562 g = group; | |
| 563 } else { | |
| 5228 | 564 g = gaim_group_new(_("Buddies")); |
| 5634 | 565 gaim_blist_add_group(g, |
| 566 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 5228 | 567 } |
| 6695 | 568 c = gaim_contact_new(); |
| 569 gaim_blist_add_contact(c, g, | |
| 570 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
| 5228 | 571 } |
| 572 | |
| 6695 | 573 cnode = (GaimBlistNode *)c; |
| 5228 | 574 |
| 6695 | 575 if(bnode->parent) { |
| 576 if(GAIM_BUDDY_IS_ONLINE(buddy)) { | |
| 577 ((GaimContact*)bnode->parent)->online--; | |
| 578 if(((GaimContact*)bnode->parent)->online == 0) | |
| 579 ((GaimGroup*)bnode->parent->parent)->online--; | |
| 580 } | |
| 581 if(gaim_account_is_connected(buddy->account)) { | |
| 582 ((GaimContact*)bnode->parent)->currentsize--; | |
| 583 if(((GaimContact*)bnode->parent)->currentsize == 0) | |
| 584 ((GaimGroup*)bnode->parent->parent)->currentsize--; | |
| 585 } | |
| 586 ((GaimContact*)bnode->parent)->totalsize--; | |
| 587 /* the group totalsize will be taken care of by remove_contact below */ | |
| 588 | |
| 589 if(bnode->parent->parent != (GaimBlistNode*)g) | |
| 590 serv_move_buddy(buddy, (GaimGroup *)bnode->parent->parent, g); | |
| 5277 | 591 |
| 5228 | 592 if(bnode->next) |
| 593 bnode->next->prev = bnode->prev; | |
| 594 if(bnode->prev) | |
| 595 bnode->prev->next = bnode->next; | |
| 6695 | 596 if(bnode->parent->child == bnode) { |
| 5228 | 597 bnode->parent->child = bnode->next; |
| 6695 | 598 if(!bnode->parent->child) |
| 599 gaim_blist_remove_contact((GaimContact*)bnode->parent); | |
| 600 } | |
| 5228 | 601 |
| 602 ops->remove(gaimbuddylist, bnode); | |
| 603 | |
| 604 save = TRUE; | |
| 6742 | 605 |
| 606 if(bnode->parent->parent != (GaimBlistNode*)g) { | |
| 607 hb = g_new(struct _gaim_hbuddy, 1); | |
| 608 hb->name = normalize(buddy->name); | |
| 609 hb->account = buddy->account; | |
| 610 hb->group = bnode->parent->parent; | |
| 6775 | 611 g_hash_table_remove(gaimbuddylist->buddies, hb); |
| 6742 | 612 g_free(hb); |
| 613 } | |
| 5228 | 614 } |
| 615 | |
| 6695 | 616 if(node && GAIM_BLIST_NODE_IS_BUDDY(node)) { |
| 617 if(node->next) | |
| 618 node->next->prev = bnode; | |
| 619 bnode->next = node->next; | |
| 620 bnode->prev = node; | |
| 621 bnode->parent = node->parent; | |
| 622 node->next = bnode; | |
| 5228 | 623 } else { |
| 6695 | 624 if(cnode->child) |
| 625 cnode->child->prev = bnode; | |
| 626 bnode->prev = NULL; | |
| 627 bnode->next = cnode->child; | |
| 628 cnode->child = bnode; | |
| 629 bnode->parent = cnode; | |
| 5228 | 630 } |
| 631 | |
| 6695 | 632 if(GAIM_BUDDY_IS_ONLINE(buddy)) { |
| 633 ((GaimContact*)bnode->parent)->online++; | |
| 634 if(((GaimContact*)bnode->parent)->online == 1) | |
| 635 ((GaimGroup*)bnode->parent->parent)->online++; | |
| 636 } | |
| 637 if(gaim_account_is_connected(buddy->account)) { | |
| 638 ((GaimContact*)bnode->parent)->currentsize++; | |
| 639 if(((GaimContact*)bnode->parent)->currentsize == 1) | |
| 640 ((GaimGroup*)bnode->parent->parent)->currentsize++; | |
| 641 } | |
| 642 ((GaimContact*)bnode->parent)->totalsize++; | |
| 643 | |
| 644 | |
| 6742 | 645 hb = g_new(struct _gaim_hbuddy, 1); |
| 5247 | 646 hb->name = g_strdup(normalize(buddy->name)); |
| 647 hb->account = buddy->account; | |
| 6695 | 648 hb->group = ((GaimBlistNode*)buddy)->parent->parent; |
| 5247 | 649 |
| 6742 | 650 g_hash_table_replace(gaimbuddylist->buddies, hb, buddy); |
| 5247 | 651 |
| 5228 | 652 if (ops) |
| 653 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 654 if (save) | |
| 655 gaim_blist_save(); | |
| 656 } | |
| 657 | |
| 6695 | 658 GaimContact *gaim_contact_new() |
| 5228 | 659 { |
| 6695 | 660 struct gaim_blist_ui_ops *ops; |
| 661 GaimContact *c = g_new0(GaimContact, 1); | |
| 662 ((GaimBlistNode*)c)->type = GAIM_BLIST_CONTACT_NODE; | |
| 663 | |
| 664 c->totalsize = c->currentsize = c->online = 0; | |
| 665 | |
| 666 ops = gaim_get_blist_ui_ops(); | |
| 667 if (ops != NULL && ops->new_node != NULL) | |
| 668 ops->new_node((GaimBlistNode *)c); | |
| 669 | |
| 670 return c; | |
| 671 } | |
| 672 | |
| 6755 | 673 void gaim_contact_set_alias(GaimContact* contact, const char *alias) |
| 674 { | |
| 675 g_return_if_fail(contact != NULL); | |
| 676 | |
| 677 if(contact->alias) | |
| 678 g_free(contact->alias); | |
| 679 | |
| 680 contact->alias = g_strdup(alias); | |
| 681 } | |
| 682 | |
| 683 const char *gaim_contact_get_alias(GaimContact* contact) | |
| 684 { | |
| 685 return contact ? contact->alias : NULL; | |
| 686 } | |
| 687 | |
| 6695 | 688 GaimGroup *gaim_group_new(const char *name) |
| 689 { | |
| 690 GaimGroup *g = gaim_find_group(name); | |
| 5228 | 691 |
| 692 if (!g) { | |
| 693 struct gaim_blist_ui_ops *ops; | |
| 6695 | 694 g= g_new0(GaimGroup, 1); |
| 5228 | 695 g->name = g_strdup(name); |
| 5277 | 696 g->totalsize = 0; |
| 697 g->currentsize = 0; | |
| 698 g->online = 0; | |
| 5228 | 699 g->settings = g_hash_table_new_full(g_str_hash, g_str_equal, |
| 700 g_free, g_free); | |
| 701 ((GaimBlistNode*)g)->type = GAIM_BLIST_GROUP_NODE; | |
| 702 | |
| 703 ops = gaim_get_blist_ui_ops(); | |
| 704 | |
| 705 if (ops != NULL && ops->new_node != NULL) | |
| 706 ops->new_node((GaimBlistNode *)g); | |
| 707 | |
| 708 } | |
| 709 return g; | |
| 710 } | |
| 711 | |
| 6695 | 712 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
| 713 { | |
| 714 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 715 GaimGroup *g; | |
| 6742 | 716 GaimBlistNode *gnode, *cnode, *bnode; |
| 6695 | 717 gboolean save = FALSE; |
| 718 | |
| 6774 | 719 g_return_if_fail(contact != NULL); |
| 720 g_return_if_fail(GAIM_BLIST_NODE_IS_CONTACT((GaimBlistNode*)contact)); | |
| 6695 | 721 |
| 722 if(node && (GAIM_BLIST_NODE_IS_CONTACT(node) || | |
| 723 GAIM_BLIST_NODE_IS_CHAT(node))) | |
| 724 g = (GaimGroup*)node->parent; | |
| 725 else if(group) | |
| 726 g = group; | |
| 727 else { | |
| 728 g = gaim_group_new(_("Buddies")); | |
| 729 gaim_blist_add_group(g, | |
| 730 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 731 } | |
| 732 | |
| 733 gnode = (GaimBlistNode*)g; | |
| 734 cnode = (GaimBlistNode*)contact; | |
| 735 | |
| 736 if(cnode->parent) { | |
| 6731 | 737 if(cnode->parent->child == cnode) |
| 738 cnode->parent->child = cnode->next; | |
| 6695 | 739 if(cnode->prev) |
| 740 cnode->prev->next = cnode->next; | |
| 741 if(cnode->next) | |
| 742 cnode->next->prev = cnode->prev; | |
| 743 | |
| 744 | |
| 745 if(contact->online > 0) | |
| 746 ((GaimGroup*)cnode->parent)->online--; | |
| 747 if(contact->currentsize > 0) | |
| 748 ((GaimGroup*)cnode->parent)->currentsize--; | |
| 749 ((GaimGroup*)cnode->parent)->totalsize--; | |
| 750 | |
| 6731 | 751 ops->remove(gaimbuddylist, cnode); |
| 752 | |
| 6695 | 753 save = TRUE; |
| 6742 | 754 |
| 755 if(cnode->parent != gnode) { | |
| 756 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 757 GaimBuddy *b = (GaimBuddy*)bnode; | |
| 758 | |
| 759 struct _gaim_hbuddy *hb = g_new(struct _gaim_hbuddy, 1); | |
| 760 hb->name = g_strdup(normalize(b->name)); | |
| 761 hb->account = b->account; | |
| 762 hb->group = cnode->parent; | |
| 763 | |
| 6776 | 764 g_hash_table_remove(gaimbuddylist->buddies, hb); |
| 6742 | 765 |
| 766 hb->group = gnode; | |
| 767 g_hash_table_replace(gaimbuddylist->buddies, hb, b); | |
| 768 | |
| 769 if(b->account->gc) | |
| 770 serv_move_buddy(b, (GaimGroup*)cnode->parent, g); | |
| 771 } | |
| 772 } | |
| 6695 | 773 } |
| 774 | |
| 6775 | 775 |
| 6695 | 776 if(node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
| 777 GAIM_BLIST_NODE_IS_CHAT(node))) { | |
| 778 if(node->next) | |
| 779 node->next->prev = cnode; | |
| 780 cnode->next = node->next; | |
| 781 cnode->prev = node; | |
| 782 cnode->parent = node->parent; | |
| 783 node->next = cnode; | |
| 784 } else { | |
| 785 if(gnode->child) | |
| 786 gnode->child->prev = cnode; | |
| 787 cnode->prev = NULL; | |
| 788 cnode->next = gnode->child; | |
| 789 gnode->child = cnode; | |
| 790 cnode->parent = gnode; | |
| 791 } | |
| 792 | |
| 793 if(contact->online > 0) | |
| 794 g->online++; | |
| 795 if(contact->currentsize > 0) | |
| 796 g->currentsize++; | |
| 797 g->totalsize++; | |
| 798 | |
| 799 if(ops && cnode->child) | |
| 800 ops->update(gaimbuddylist, cnode); | |
| 6775 | 801 |
| 802 for(bnode = cnode->child; bnode; bnode = bnode->next) | |
| 803 ops->update(gaimbuddylist, bnode); | |
| 804 | |
| 6695 | 805 if (save) |
| 806 gaim_blist_save(); | |
| 807 } | |
| 808 | |
| 809 void gaim_blist_add_group (GaimGroup *group, GaimBlistNode *node) | |
| 5228 | 810 { |
| 811 struct gaim_blist_ui_ops *ops; | |
| 812 GaimBlistNode *gnode = (GaimBlistNode*)group; | |
| 813 gboolean save = FALSE; | |
| 814 | |
| 6774 | 815 g_return_if_fail(group != NULL); |
| 816 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP((GaimBlistNode*)group)); | |
| 817 | |
| 5228 | 818 if (!gaimbuddylist) |
| 819 gaimbuddylist = gaim_blist_new(); | |
| 820 ops = gaimbuddylist->ui_ops; | |
| 821 | |
| 822 if (!gaimbuddylist->root) { | |
| 823 gaimbuddylist->root = gnode; | |
| 824 return; | |
| 825 } | |
| 826 | |
| 827 /* if we're moving to overtop of ourselves, do nothing */ | |
| 828 if(gnode == node) | |
| 829 return; | |
| 830 | |
| 831 if (gaim_find_group(group->name)) { | |
| 832 /* This is just being moved */ | |
| 833 | |
| 834 ops->remove(gaimbuddylist, (GaimBlistNode*)group); | |
| 835 | |
| 836 if(gnode == gaimbuddylist->root) | |
| 837 gaimbuddylist->root = gnode->next; | |
| 838 if(gnode->prev) | |
| 839 gnode->prev->next = gnode->next; | |
| 840 if(gnode->next) | |
| 841 gnode->next->prev = gnode->prev; | |
| 842 | |
| 843 save = TRUE; | |
| 844 } | |
| 845 | |
| 6695 | 846 if (node && GAIM_BLIST_NODE_IS_GROUP(node)) { |
| 5634 | 847 gnode->next = node->next; |
| 848 gnode->prev = node; | |
| 849 if(node->next) | |
| 850 node->next->prev = gnode; | |
| 851 node->next = gnode; | |
| 852 } else { | |
| 853 gaimbuddylist->root->prev = gnode; | |
| 854 gnode->next = gaimbuddylist->root; | |
| 855 gnode->prev = NULL; | |
| 856 gaimbuddylist->root = gnode; | |
| 857 } | |
| 858 | |
| 5228 | 859 |
| 860 if (ops) { | |
| 861 ops->update(gaimbuddylist, gnode); | |
| 862 for(node = gnode->child; node; node = node->next) | |
| 863 ops->update(gaimbuddylist, node); | |
| 864 } | |
| 865 if (save) | |
| 866 gaim_blist_save(); | |
| 867 } | |
| 868 | |
| 6695 | 869 void gaim_blist_remove_contact(GaimContact* contact) |
| 5228 | 870 { |
| 871 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 872 | |
| 6695 | 873 GaimBlistNode *gnode, *cnode = (GaimBlistNode*)contact; |
| 874 | |
| 875 gnode = cnode->parent; | |
| 876 | |
| 877 if(cnode->child) { | |
| 878 while(cnode->child) { | |
| 879 gaim_blist_remove_buddy((GaimBuddy*)cnode->child); | |
| 880 } | |
| 881 } else { | |
| 882 if(ops) | |
| 883 ops->remove(gaimbuddylist, cnode); | |
| 884 | |
| 885 if(gnode->child == cnode) | |
| 886 gnode->child = cnode->next; | |
| 887 if(cnode->prev) | |
| 888 cnode->prev->next = cnode->next; | |
| 889 if(cnode->next) | |
| 890 cnode->next->prev = cnode->prev; | |
| 891 | |
| 892 g_free(contact); | |
| 893 } | |
| 894 } | |
| 895 | |
| 6742 | 896 void gaim_blist_remove_buddy (GaimBuddy *buddy) |
| 6695 | 897 { |
| 898 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 899 | |
| 900 GaimBlistNode *cnode, *node = (GaimBlistNode*)buddy; | |
| 901 GaimGroup *group; | |
| 6742 | 902 struct _gaim_hbuddy hb; |
| 5228 | 903 |
| 6695 | 904 cnode = node->parent; |
| 905 group = (GaimGroup *)cnode->parent; | |
| 5228 | 906 |
| 6695 | 907 if(GAIM_BUDDY_IS_ONLINE(buddy)) { |
| 908 ((GaimContact*)cnode)->online--; | |
| 909 if(((GaimContact*)cnode)->online == 0) | |
| 910 group->online--; | |
| 911 } | |
| 912 if(gaim_account_is_connected(buddy->account)) { | |
| 913 ((GaimContact*)cnode)->currentsize--; | |
| 914 if(((GaimContact*)cnode)->currentsize == 0) | |
| 915 group->currentsize--; | |
| 916 } | |
| 917 ((GaimContact*)cnode)->totalsize--; | |
| 918 | |
| 5228 | 919 if (node->prev) |
| 920 node->prev->next = node->next; | |
| 921 if (node->next) | |
| 922 node->next->prev = node->prev; | |
| 6695 | 923 if(cnode->child == node) { |
| 924 cnode->child = node->next; | |
| 925 } | |
| 5228 | 926 |
| 6755 | 927 |
| 5247 | 928 hb.name = normalize(buddy->name); |
| 929 hb.account = buddy->account; | |
| 6695 | 930 hb.group = ((GaimBlistNode*)buddy)->parent->parent; |
| 6742 | 931 g_hash_table_remove(gaimbuddylist->buddies, &hb); |
| 5247 | 932 |
| 5292 | 933 if(buddy->timer > 0) |
| 934 g_source_remove(buddy->timer); | |
| 935 | |
| 5228 | 936 ops->remove(gaimbuddylist, node); |
| 937 g_hash_table_destroy(buddy->settings); | |
| 938 g_free(buddy->name); | |
| 939 g_free(buddy->alias); | |
| 940 g_free(buddy); | |
| 6755 | 941 |
| 942 if(!cnode->child) | |
| 943 gaim_blist_remove_contact((GaimContact*)cnode); | |
| 5228 | 944 } |
| 945 | |
| 6695 | 946 void gaim_blist_remove_chat (GaimBlistChat *chat) |
| 5234 | 947 { |
| 948 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 949 | |
| 950 GaimBlistNode *gnode, *node = (GaimBlistNode*)chat; | |
| 6695 | 951 GaimGroup *group; |
| 5234 | 952 |
| 953 gnode = node->parent; | |
| 6695 | 954 group = (GaimGroup *)gnode; |
| 5234 | 955 |
| 956 if(gnode->child == node) | |
| 957 gnode->child = node->next; | |
| 958 if (node->prev) | |
| 959 node->prev->next = node->next; | |
| 960 if (node->next) | |
| 961 node->next->prev = node->prev; | |
| 5277 | 962 group->totalsize--; |
| 5855 | 963 if (gaim_account_is_connected(chat->account)) { |
| 5277 | 964 group->currentsize--; |
| 5394 | 965 group->online--; |
| 966 } | |
| 5234 | 967 |
| 968 ops->remove(gaimbuddylist, node); | |
| 969 g_hash_table_destroy(chat->components); | |
| 970 g_free(chat->alias); | |
| 971 g_free(chat); | |
| 972 } | |
| 973 | |
| 6695 | 974 void gaim_blist_remove_group (GaimGroup *group) |
| 5228 | 975 { |
| 976 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 977 GaimBlistNode *node = (GaimBlistNode*)group; | |
| 978 | |
| 979 if(node->child) { | |
| 980 char *buf; | |
| 981 int count = 0; | |
| 982 GaimBlistNode *child = node->child; | |
| 983 | |
| 984 while(child) { | |
| 985 count++; | |
| 986 child = child->next; | |
| 987 } | |
| 988 | |
| 6308 | 989 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed " |
| 990 "because its account was not logged in." | |
| 991 " This buddy and the group were not " | |
| 992 "removed.\n", | |
| 993 "%d buddies from group %s were not " | |
| 994 "removed because their accounts were " | |
| 6336 | 995 "not logged in. These buddies and " |
| 996 "the group were not removed.\n", count), | |
| 6308 | 997 count, group->name); |
|
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
998 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); |
| 5228 | 999 g_free(buf); |
| 1000 return; | |
| 1001 } | |
| 1002 | |
| 1003 if(gaimbuddylist->root == node) | |
| 1004 gaimbuddylist->root = node->next; | |
| 1005 if (node->prev) | |
| 1006 node->prev->next = node->next; | |
| 1007 if (node->next) | |
| 1008 node->next->prev = node->prev; | |
| 1009 | |
| 1010 ops->remove(gaimbuddylist, node); | |
| 1011 g_free(group->name); | |
| 1012 g_free(group); | |
| 1013 } | |
| 1014 | |
| 6695 | 1015 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact) { |
| 1016 GaimBuddy *top = NULL; | |
| 1017 GaimBlistNode *bnode; | |
| 1018 | |
| 1019 for(bnode = ((GaimBlistNode*)contact)->child; bnode; bnode = bnode->next) { | |
| 1020 GaimBuddy *buddy; | |
| 1021 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 1022 continue; | |
| 1023 buddy = (GaimBuddy*)bnode; | |
| 1024 if(!top) { | |
| 1025 top = buddy; | |
| 1026 } else if(GAIM_BUDDY_IS_ONLINE(buddy)) { | |
| 1027 if(!GAIM_BUDDY_IS_ONLINE(top)) { | |
| 1028 top = buddy; | |
| 1029 } else if(!(buddy->uc & UC_UNAVAILABLE) && !buddy->idle && | |
| 1030 (top->uc & UC_UNAVAILABLE || top->idle)) { | |
| 1031 top = buddy; | |
| 1032 } else if(!buddy->idle && top->idle) { | |
| 1033 top = buddy; | |
| 1034 } else if(top->uc & UC_UNAVAILABLE && top->idle && | |
| 1035 (!(buddy->uc & UC_UNAVAILABLE) || !buddy->idle)) { | |
| 1036 top = buddy; | |
| 1037 } | |
| 1038 } | |
| 1039 } | |
| 1040 | |
| 1041 return top; | |
| 1042 } | |
| 1043 | |
| 1044 const char *gaim_get_buddy_alias_only(GaimBuddy *b) { | |
|
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1045 if(!b) |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1046 return NULL; |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1047 |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1048 if(b->alias && b->alias[0]) { |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1049 return b->alias; |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1050 } |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1051 else if (b->server_alias != NULL && |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1052 gaim_prefs_get_bool("/core/buddies/use_server_alias")) { |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1053 |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1054 return b->server_alias; |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1055 } |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1056 |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1057 return NULL; |
| 5228 | 1058 } |
| 1059 | |
| 6695 | 1060 const char * gaim_get_buddy_alias (GaimBuddy *buddy) |
| 5228 | 1061 { |
| 6755 | 1062 GaimContact *contact; |
| 1063 const char *ret; | |
| 1064 | |
| 1065 if(!buddy) | |
| 1066 return _("Unknown"); | |
| 5228 | 1067 |
| 6755 | 1068 contact = (GaimContact*)((GaimBlistNode*)buddy)->parent; |
| 6036 | 1069 |
| 6755 | 1070 if(contact && contact->alias) |
| 1071 return contact->alias; | |
| 1072 | |
| 1073 ret= gaim_get_buddy_alias_only(buddy); | |
| 1074 | |
| 1075 return ret ? ret : buddy->name; | |
| 5228 | 1076 } |
| 1077 | |
| 6744 | 1078 const char *gaim_blist_chat_get_name(GaimBlistChat *chat) |
| 1079 { | |
| 1080 if(chat->alias && *chat->alias) { | |
| 1081 return chat->alias; | |
| 1082 } else { | |
| 1083 struct proto_chat_entry *pce; | |
| 1084 GList *parts, *tmp; | |
| 1085 char *ret; | |
| 1086 | |
| 1087 parts = GAIM_PLUGIN_PROTOCOL_INFO(chat->account->gc->prpl)->chat_info(chat->account->gc); | |
| 1088 pce = parts->data; | |
| 1089 ret = g_hash_table_lookup(chat->components, pce->identifier); | |
| 1090 for(tmp = parts; tmp; tmp = tmp->next) | |
| 1091 g_free(tmp->data); | |
| 1092 g_list_free(parts); | |
| 1093 | |
| 1094 return ret; | |
| 1095 } | |
| 1096 } | |
| 1097 | |
| 6695 | 1098 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name) |
| 5228 | 1099 { |
| 6695 | 1100 GaimBuddy *buddy; |
| 5247 | 1101 struct _gaim_hbuddy hb; |
| 5758 | 1102 GaimBlistNode *group; |
| 5228 | 1103 |
| 1104 if (!gaimbuddylist) | |
| 1105 return NULL; | |
| 6245 | 1106 |
| 1107 if (!name) | |
|
5985
60d9cbfb6bf8
[gaim-migrate @ 6433]
Christian Hammond <chipx86@chipx86.com>
parents:
5947
diff
changeset
|
1108 return NULL; |
| 5228 | 1109 |
| 6245 | 1110 hb.name = normalize(name); |
| 1111 hb.account = account; | |
| 5247 | 1112 |
| 6245 | 1113 for(group = gaimbuddylist->root; group; group = group->next) { |
| 5758 | 1114 hb.group = group; |
| 5776 | 1115 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) |
| 5758 | 1116 return buddy; |
| 1117 } | |
| 6245 | 1118 |
| 5758 | 1119 return NULL; |
| 5228 | 1120 } |
| 1121 | |
| 6245 | 1122 GSList *gaim_find_buddies(GaimAccount *account, const char *name) |
| 1123 { | |
| 1124 struct buddy *buddy; | |
| 1125 struct _gaim_hbuddy hb; | |
| 1126 GaimBlistNode *group; | |
| 1127 GSList *ret = NULL; | |
| 1128 | |
| 1129 if (!gaimbuddylist) | |
| 1130 return NULL; | |
| 1131 | |
| 1132 if (!name) | |
| 1133 return NULL; | |
| 1134 | |
| 1135 hb.name = normalize(name); | |
| 1136 hb.account = account; | |
| 1137 | |
| 1138 for(group = gaimbuddylist->root; group; group = group->next) { | |
| 1139 hb.group = group; | |
| 1140 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) | |
| 1141 ret = g_slist_append(ret, buddy); | |
| 1142 } | |
| 1143 | |
| 1144 return ret; | |
| 1145 } | |
| 1146 | |
| 6695 | 1147 GaimGroup *gaim_find_group(const char *name) |
| 5228 | 1148 { |
| 1149 GaimBlistNode *node; | |
| 1150 if (!gaimbuddylist) | |
| 1151 return NULL; | |
| 1152 node = gaimbuddylist->root; | |
| 1153 while(node) { | |
| 6695 | 1154 if (!strcmp(((GaimGroup *)node)->name, name)) |
| 1155 return (GaimGroup *)node; | |
| 5228 | 1156 node = node->next; |
| 1157 } | |
| 1158 return NULL; | |
| 1159 } | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1160 |
| 6695 | 1161 GaimBlistChat * |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1162 gaim_blist_find_chat(GaimAccount *account, const char *name) |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1163 { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1164 char *chat_name; |
| 6695 | 1165 GaimBlistChat *chat; |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1166 GaimPlugin *prpl; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1167 GaimPluginProtocolInfo *prpl_info = NULL; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1168 struct proto_chat_entry *pce; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1169 GaimBlistNode *node, *group; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1170 GList *parts; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1171 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1172 g_return_val_if_fail(gaim_get_blist() != NULL, NULL); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1173 g_return_val_if_fail(name != NULL, NULL); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1174 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1175 for (group = gaimbuddylist->root; group != NULL; group = group->next) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1176 for (node = group->child; node != NULL; node = node->next) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1177 if (GAIM_BLIST_NODE_IS_CHAT(node)) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1178 |
| 6695 | 1179 chat = (GaimBlistChat*)node; |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1180 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1181 prpl = gaim_find_prpl(gaim_account_get_protocol(chat->account)); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1182 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1183 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1184 parts = prpl_info->chat_info( |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1185 gaim_account_get_connection(chat->account)); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1186 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1187 pce = parts->data; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1188 chat_name = g_hash_table_lookup(chat->components, |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1189 pce->identifier); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1190 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1191 if (chat->account == account && |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1192 name != NULL && !strcmp(chat_name, name)) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1193 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1194 return chat; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1195 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1196 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1197 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1198 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1199 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1200 return NULL; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1201 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1202 |
| 6695 | 1203 GaimGroup * |
| 1204 gaim_blist_chat_get_group(GaimBlistChat *chat) | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1205 { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1206 g_return_val_if_fail(chat != NULL, NULL); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1207 |
| 6695 | 1208 return (GaimGroup *)(((GaimBlistNode *)chat)->parent); |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1209 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1210 |
| 6695 | 1211 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy) |
| 5228 | 1212 { |
| 1213 if (!buddy) | |
| 1214 return NULL; | |
|
6706
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1215 |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1216 if (((GaimBlistNode *)buddy)->parent == NULL) |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1217 return NULL; |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1218 |
| 6695 | 1219 return (GaimGroup *)(((GaimBlistNode*)buddy)->parent->parent); |
| 5228 | 1220 } |
| 1221 | |
| 6695 | 1222 GSList *gaim_group_get_accounts(GaimGroup *g) |
| 5228 | 1223 { |
| 1224 GSList *l = NULL; | |
| 6695 | 1225 GaimBlistNode *gnode, *cnode, *bnode; |
| 1226 | |
| 1227 gnode = (GaimBlistNode *)g; | |
| 5228 | 1228 |
| 6695 | 1229 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 1230 if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
| 1231 if(!g_slist_find(l, ((GaimBlistChat *)cnode)->account)) | |
| 1232 l = g_slist_append(l, ((GaimBlistChat *)cnode)->account); | |
| 1233 } else if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1234 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1235 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 1236 if(!g_slist_find(l, ((GaimBuddy *)bnode)->account)) | |
| 1237 l = g_slist_append(l, ((GaimBuddy *)bnode)->account); | |
| 1238 } | |
| 1239 } | |
| 1240 } | |
| 5228 | 1241 } |
| 6695 | 1242 |
| 5228 | 1243 return l; |
| 1244 } | |
| 1245 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1246 void gaim_blist_add_account(GaimAccount *account) |
| 5234 | 1247 { |
| 1248 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 6695 | 1249 GaimBlistNode *gnode, *cnode, *bnode; |
| 5234 | 1250 |
| 1251 if(!gaimbuddylist) | |
| 1252 return; | |
| 1253 | |
| 6695 | 1254 if(!ops) |
| 1255 return; | |
| 1256 | |
| 1257 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
| 1258 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 5234 | 1259 continue; |
| 6695 | 1260 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 1261 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1262 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1263 if(GAIM_BLIST_NODE_IS_BUDDY(bnode) && | |
| 1264 ((GaimBuddy*)bnode)->account == account) { | |
| 1265 ((GaimContact*)cnode)->currentsize++; | |
| 1266 if(((GaimContact*)cnode)->currentsize == 1) | |
| 1267 ((GaimGroup*)gnode)->currentsize++; | |
| 1268 if(GAIM_BUDDY_IS_ONLINE((GaimBuddy*)bnode)) { | |
| 1269 ((GaimContact*)cnode)->online++; | |
| 1270 if(((GaimContact*)cnode)->online == 1) | |
| 1271 ((GaimGroup*)gnode)->online++; | |
| 1272 } | |
| 1273 ops->update(gaimbuddylist, bnode); | |
| 1274 } | |
| 1275 } | |
| 1276 ops->update(gaimbuddylist, cnode); | |
| 1277 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode) && | |
| 1278 ((GaimBlistChat*)cnode)->account == account) { | |
| 1279 ((GaimGroup *)gnode)->online++; | |
| 1280 ((GaimGroup *)gnode)->currentsize++; | |
| 1281 ops->update(gaimbuddylist, cnode); | |
| 5234 | 1282 } |
| 1283 } | |
| 6695 | 1284 ops->update(gaimbuddylist, gnode); |
| 5234 | 1285 } |
| 1286 } | |
| 1287 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1288 void gaim_blist_remove_account(GaimAccount *account) |
| 5228 | 1289 { |
| 1290 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 6695 | 1291 GaimBlistNode *gnode, *cnode, *bnode; |
| 5234 | 1292 |
| 5228 | 1293 if (!gaimbuddylist) |
| 1294 return; | |
| 5234 | 1295 |
| 6695 | 1296 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
| 1297 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 5234 | 1298 continue; |
| 6695 | 1299 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 1300 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1301 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1302 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 1303 continue; | |
| 1304 if(account == ((GaimBuddy *)bnode)->account) { | |
| 1305 if(((GaimBuddy*)bnode)->present == GAIM_BUDDY_ONLINE || | |
| 1306 ((GaimBuddy*)bnode)->present == GAIM_BUDDY_SIGNING_ON) { | |
| 1307 ((GaimContact*)cnode)->online--; | |
| 1308 if(((GaimContact*)cnode)->online == 0) | |
| 1309 ((GaimGroup*)gnode)->online--; | |
| 1310 } | |
| 1311 ((GaimContact*)cnode)->currentsize--; | |
| 1312 if(((GaimContact*)cnode)->currentsize == 0) | |
| 1313 ((GaimGroup*)gnode)->currentsize--; | |
| 1314 | |
| 1315 ((GaimBuddy*)bnode)->present = GAIM_BUDDY_OFFLINE; | |
| 1316 | |
| 1317 if(ops) | |
| 1318 ops->remove(gaimbuddylist, bnode); | |
| 1319 } | |
| 5234 | 1320 } |
| 6695 | 1321 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode) && |
| 1322 ((GaimBlistChat*)cnode)->account == account) { | |
| 1323 ((GaimGroup*)gnode)->currentsize--; | |
| 1324 ((GaimGroup*)gnode)->online--; | |
| 1325 if(ops) | |
| 1326 ops->remove(gaimbuddylist, cnode); | |
| 5228 | 1327 } |
| 1328 } | |
| 1329 } | |
| 1330 } | |
| 1331 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1332 void parse_toc_buddy_list(GaimAccount *account, char *config) |
| 5228 | 1333 { |
| 1334 char *c; | |
| 1335 char current[256]; | |
| 1336 GList *bud = NULL; | |
| 1337 | |
| 1338 | |
| 1339 if (config != NULL) { | |
| 1340 | |
| 1341 /* skip "CONFIG:" (if it exists) */ | |
| 1342 c = strncmp(config + 6 /* sizeof(struct sflap_hdr) */ , "CONFIG:", strlen("CONFIG:")) ? | |
| 1343 strtok(config, "\n") : | |
| 1344 strtok(config + 6 /* sizeof(struct sflap_hdr) */ + strlen("CONFIG:"), "\n"); | |
| 1345 do { | |
| 1346 if (c == NULL) | |
| 1347 break; | |
| 1348 if (*c == 'g') { | |
| 1349 char *utf8 = NULL; | |
| 1350 utf8 = gaim_try_conv_to_utf8(c + 2); | |
| 1351 if (utf8 == NULL) { | |
| 1352 g_strlcpy(current, _("Invalid Groupname"), sizeof(current)); | |
| 1353 } else { | |
| 1354 g_strlcpy(current, utf8, sizeof(current)); | |
| 1355 g_free(utf8); | |
| 1356 } | |
| 1357 if (!gaim_find_group(current)) { | |
| 6695 | 1358 GaimGroup *g = gaim_group_new(current); |
| 5634 | 1359 gaim_blist_add_group(g, |
| 1360 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 5228 | 1361 } |
| 1362 } else if (*c == 'b') { /*&& !gaim_find_buddy(user, c + 2)) {*/ | |
| 1363 char nm[80], sw[388], *a, *utf8 = NULL; | |
| 1364 | |
| 1365 if ((a = strchr(c + 2, ':')) != NULL) { | |
| 1366 *a++ = '\0'; /* nul the : */ | |
| 1367 } | |
| 1368 | |
| 1369 g_strlcpy(nm, c + 2, sizeof(nm)); | |
| 1370 if (a) { | |
| 1371 utf8 = gaim_try_conv_to_utf8(a); | |
| 1372 if (utf8 == NULL) { | |
| 1373 gaim_debug(GAIM_DEBUG_ERROR, "toc blist", | |
| 1374 "Failed to convert alias for " | |
| 1375 "'%s' to UTF-8\n", nm); | |
| 1376 } | |
| 1377 } | |
| 1378 if (utf8 == NULL) { | |
| 1379 sw[0] = '\0'; | |
| 1380 } else { | |
| 1381 /* This can leave a partial sequence at the end, | |
| 1382 * but who cares? */ | |
| 1383 g_strlcpy(sw, utf8, sizeof(sw)); | |
| 1384 g_free(utf8); | |
| 1385 } | |
| 1386 | |
| 1387 if (!gaim_find_buddy(account, nm)) { | |
| 6695 | 1388 GaimBuddy *b = gaim_buddy_new(account, nm, sw); |
| 1389 GaimGroup *g = gaim_find_group(current); | |
| 1390 gaim_blist_add_buddy(b, NULL, g, | |
| 5634 | 1391 gaim_blist_get_last_child((GaimBlistNode*)g)); |
| 5228 | 1392 bud = g_list_append(bud, g_strdup(nm)); |
| 1393 } | |
| 1394 } else if (*c == 'p') { | |
|
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1395 gaim_privacy_permit_add(account, c + 2, TRUE); |
| 5228 | 1396 } else if (*c == 'd') { |
|
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1397 gaim_privacy_deny_add(account, c + 2, TRUE); |
| 5228 | 1398 } else if (!strncmp("toc", c, 3)) { |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1399 sscanf(c + strlen(c) - 1, "%d", &account->perm_deny); |
| 5228 | 1400 gaim_debug(GAIM_DEBUG_MISC, "toc blist", |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1401 "permdeny: %d\n", account->perm_deny); |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1402 if (account->perm_deny == 0) |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1403 account->perm_deny = 1; |
| 5228 | 1404 } else if (*c == 'm') { |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1405 sscanf(c + 2, "%d", &account->perm_deny); |
| 5228 | 1406 gaim_debug(GAIM_DEBUG_MISC, "toc blist", |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1407 "permdeny: %d\n", account->perm_deny); |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1408 if (account->perm_deny == 0) |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1409 account->perm_deny = 1; |
| 5228 | 1410 } |
| 1411 } while ((c = strtok(NULL, "\n"))); | |
| 1412 | |
| 1413 if(account->gc) { | |
| 1414 if(bud) { | |
| 1415 GList *node = bud; | |
| 1416 serv_add_buddies(account->gc, bud); | |
| 1417 while(node) { | |
| 1418 g_free(node->data); | |
| 1419 node = node->next; | |
| 1420 } | |
| 1421 } | |
| 1422 serv_set_permit_deny(account->gc); | |
| 1423 } | |
| 1424 g_list_free(bud); | |
| 1425 } | |
| 1426 } | |
| 1427 | |
| 1428 #if 0 | |
| 1429 /* translate an AIM 3 buddylist (*.lst) to a Gaim buddylist */ | |
| 1430 static GString *translate_lst(FILE *src_fp) | |
| 1431 { | |
| 1432 char line[BUF_LEN], *line2; | |
| 1433 char *name; | |
| 1434 int i; | |
| 1435 | |
| 1436 GString *dest = g_string_new("m 1\n"); | |
| 1437 | |
| 1438 while (fgets(line, BUF_LEN, src_fp)) { | |
| 1439 line2 = g_strchug(line); | |
| 1440 if (strstr(line2, "group") == line2) { | |
| 1441 name = strpbrk(line2, " \t\n\r\f") + 1; | |
| 1442 dest = g_string_append(dest, "g "); | |
| 1443 for (i = 0; i < strcspn(name, "\n\r"); i++) | |
| 1444 if (name[i] != '\"') | |
| 1445 dest = g_string_append_c(dest, name[i]); | |
| 1446 dest = g_string_append_c(dest, '\n'); | |
| 1447 } | |
| 1448 if (strstr(line2, "buddy") == line2) { | |
| 1449 name = strpbrk(line2, " \t\n\r\f") + 1; | |
| 1450 dest = g_string_append(dest, "b "); | |
| 1451 for (i = 0; i < strcspn(name, "\n\r"); i++) | |
| 1452 if (name[i] != '\"') | |
| 1453 dest = g_string_append_c(dest, name[i]); | |
| 1454 dest = g_string_append_c(dest, '\n'); | |
| 1455 } | |
| 1456 } | |
| 1457 | |
| 1458 return dest; | |
| 1459 } | |
| 1460 | |
| 1461 | |
| 1462 /* translate an AIM 4 buddylist (*.blt) to Gaim format */ | |
| 1463 static GString *translate_blt(FILE *src_fp) | |
| 1464 { | |
| 1465 int i; | |
| 1466 char line[BUF_LEN]; | |
| 1467 char *buddy; | |
| 1468 | |
| 1469 GString *dest = g_string_new("m 1\n"); | |
| 1470 | |
| 1471 while (strstr(fgets(line, BUF_LEN, src_fp), "Buddy") == NULL); | |
| 1472 while (strstr(fgets(line, BUF_LEN, src_fp), "list") == NULL); | |
| 1473 | |
| 1474 while (1) { | |
| 1475 fgets(line, BUF_LEN, src_fp); g_strchomp(line); | |
| 1476 if (strchr(line, '}') != NULL) | |
| 1477 break; | |
| 1478 | |
| 1479 if (strchr(line, '{') != NULL) { | |
| 1480 /* Syntax starting with "<group> {" */ | |
| 1481 | |
| 1482 dest = g_string_append(dest, "g "); | |
| 1483 buddy = g_strchug(strtok(line, "{")); | |
| 1484 for (i = 0; i < strlen(buddy); i++) | |
| 1485 if (buddy[i] != '\"') | |
| 1486 dest = g_string_append_c(dest, buddy[i]); | |
| 1487 dest = g_string_append_c(dest, '\n'); | |
| 1488 while (strchr(fgets(line, BUF_LEN, src_fp), '}') == NULL) { | |
| 1489 gboolean pounce = FALSE; | |
| 1490 char *e; | |
| 1491 g_strchomp(line); | |
| 1492 buddy = g_strchug(line); | |
| 1493 gaim_debug(GAIM_DEBUG_MISC, "AIM 4 blt import", | |
| 1494 "buddy: \"%s\"\n", buddy); | |
| 1495 dest = g_string_append(dest, "b "); | |
| 1496 if (strchr(buddy, '{') != NULL) { | |
| 1497 /* buddy pounce, etc */ | |
| 1498 char *pos = strchr(buddy, '{') - 1; | |
| 1499 *pos = 0; | |
| 1500 pounce = TRUE; | |
| 1501 } | |
| 1502 if ((e = strchr(buddy, '\"')) != NULL) { | |
| 1503 *e = '\0'; | |
| 1504 buddy++; | |
| 1505 } | |
| 1506 dest = g_string_append(dest, buddy); | |
| 1507 dest = g_string_append_c(dest, '\n'); | |
| 1508 if (pounce) | |
| 1509 do | |
| 1510 fgets(line, BUF_LEN, src_fp); | |
| 1511 while (!strchr(line, '}')); | |
| 1512 } | |
| 1513 } else { | |
| 1514 | |
| 1515 /* Syntax "group buddy buddy ..." */ | |
| 1516 buddy = g_strchug(strtok(line, " \n")); | |
| 1517 dest = g_string_append(dest, "g "); | |
| 1518 if (strchr(buddy, '\"') != NULL) { | |
| 1519 dest = g_string_append(dest, &buddy[1]); | |
| 1520 dest = g_string_append_c(dest, ' '); | |
| 1521 buddy = g_strchug(strtok(NULL, " \n")); | |
| 1522 while (strchr(buddy, '\"') == NULL) { | |
| 1523 dest = g_string_append(dest, buddy); | |
| 1524 dest = g_string_append_c(dest, ' '); | |
| 1525 buddy = g_strchug(strtok(NULL, " \n")); | |
| 1526 } | |
| 1527 buddy[strlen(buddy) - 1] = '\0'; | |
| 1528 dest = g_string_append(dest, buddy); | |
| 1529 } else { | |
| 1530 dest = g_string_append(dest, buddy); | |
| 1531 } | |
| 1532 dest = g_string_append_c(dest, '\n'); | |
| 1533 while ((buddy = g_strchug(strtok(NULL, " \n"))) != NULL) { | |
| 1534 dest = g_string_append(dest, "b "); | |
| 1535 if (strchr(buddy, '\"') != NULL) { | |
| 1536 dest = g_string_append(dest, &buddy[1]); | |
| 1537 dest = g_string_append_c(dest, ' '); | |
| 1538 buddy = g_strchug(strtok(NULL, " \n")); | |
| 1539 while (strchr(buddy, '\"') == NULL) { | |
| 1540 dest = g_string_append(dest, buddy); | |
| 1541 dest = g_string_append_c(dest, ' '); | |
| 1542 buddy = g_strchug(strtok(NULL, " \n")); | |
| 1543 } | |
| 1544 buddy[strlen(buddy) - 1] = '\0'; | |
| 1545 dest = g_string_append(dest, buddy); | |
| 1546 } else { | |
| 1547 dest = g_string_append(dest, buddy); | |
| 1548 } | |
| 1549 dest = g_string_append_c(dest, '\n'); | |
| 1550 } | |
| 1551 } | |
| 1552 } | |
| 1553 | |
| 1554 return dest; | |
| 1555 } | |
| 1556 | |
| 1557 static GString *translate_gnomeicu(FILE *src_fp) | |
| 1558 { | |
| 1559 char line[BUF_LEN]; | |
| 1560 GString *dest = g_string_new("m 1\ng Buddies\n"); | |
| 1561 | |
| 1562 while (strstr(fgets(line, BUF_LEN, src_fp), "NewContacts") == NULL); | |
| 1563 | |
| 1564 while (fgets(line, BUF_LEN, src_fp)) { | |
| 1565 char *eq; | |
| 1566 g_strchomp(line); | |
| 1567 if (line[0] == '\n' || line[0] == '[') | |
| 1568 break; | |
| 1569 eq = strchr(line, '='); | |
| 1570 if (!eq) | |
| 1571 break; | |
| 1572 *eq = ':'; | |
| 1573 eq = strchr(eq, ','); | |
| 1574 if (eq) | |
| 1575 *eq = '\0'; | |
| 1576 dest = g_string_append(dest, "b "); | |
| 1577 dest = g_string_append(dest, line); | |
| 1578 dest = g_string_append_c(dest, '\n'); | |
| 1579 } | |
| 1580 | |
| 1581 return dest; | |
| 1582 } | |
| 1583 #endif | |
| 1584 | |
| 1585 static gchar *get_screenname_filename(const char *name) | |
| 1586 { | |
| 1587 gchar **split; | |
| 1588 gchar *good; | |
| 1589 gchar *ret; | |
| 1590 | |
| 1591 split = g_strsplit(name, G_DIR_SEPARATOR_S, -1); | |
| 1592 good = g_strjoinv(NULL, split); | |
| 1593 g_strfreev(split); | |
| 1594 | |
| 1595 ret = g_utf8_strup(good, -1); | |
| 1596 | |
| 1597 g_free(good); | |
| 1598 | |
| 1599 return ret; | |
| 1600 } | |
| 1601 | |
| 1602 static gboolean gaim_blist_read(const char *filename); | |
| 1603 | |
| 1604 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1605 static void do_import(GaimAccount *account, const char *filename) |
| 5228 | 1606 { |
| 1607 GString *buf = NULL; | |
| 1608 char first[64]; | |
| 1609 char path[PATHSIZE]; | |
| 1610 int len; | |
| 1611 FILE *f; | |
| 1612 struct stat st; | |
| 1613 | |
| 1614 if (filename) { | |
| 1615 g_snprintf(path, sizeof(path), "%s", filename); | |
| 1616 } else { | |
| 1617 char *g_screenname = get_screenname_filename(account->username); | |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1618 const char *username; |
| 5228 | 1619 char *file = gaim_user_dir(); |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1620 GaimProtocol prpl_num; |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1621 int protocol; |
| 6695 | 1622 |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1623 prpl_num = gaim_account_get_protocol(account); |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1624 |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1625 protocol = prpl_num; |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1626 |
|
6450
e7b87c8e8c0a
[gaim-migrate @ 6959]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
1627 /* TODO Somehow move this checking into prpls */ |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1628 if (prpl_num == GAIM_PROTO_OSCAR) { |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1629 if ((username = gaim_account_get_username(account)) != NULL) { |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1630 protocol = (isalpha(*username) |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1631 ? GAIM_PROTO_TOC : GAIM_PROTO_ICQ); |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1632 } |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1633 } |
| 5228 | 1634 |
| 1635 if (file != (char *)NULL) { | |
| 5435 | 1636 snprintf(path, PATHSIZE, "%s" G_DIR_SEPARATOR_S "%s.%d.blist", file, g_screenname, protocol); |
| 5228 | 1637 g_free(g_screenname); |
| 1638 } else { | |
| 1639 g_free(g_screenname); | |
| 1640 return; | |
| 1641 } | |
| 1642 } | |
| 1643 | |
| 1644 if (stat(path, &st)) { | |
| 1645 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Unable to stat %s.\n", | |
| 1646 path); | |
| 1647 return; | |
| 1648 } | |
| 1649 | |
| 1650 if (!(f = fopen(path, "r"))) { | |
| 1651 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Unable to open %s.\n", | |
| 1652 path); | |
| 1653 return; | |
| 1654 } | |
| 1655 | |
| 1656 fgets(first, 64, f); | |
| 1657 | |
| 1658 if ((first[0] == '\n') || (first[0] == '\r' && first[1] == '\n')) | |
| 1659 fgets(first, 64, f); | |
| 1660 | |
| 1661 #if 0 | |
| 1662 if (!g_strncasecmp(first, "<xml", strlen("<xml"))) { | |
| 1663 /* new gaim XML buddy list */ | |
| 1664 gaim_blist_read(path); | |
| 1665 | |
| 1666 /* We really don't need to bother doing stuf like translating AIM 3 buddy lists anymore */ | |
| 1667 | |
| 1668 } else if (!g_strncasecmp(first, "Config {", strlen("Config {"))) { | |
| 1669 /* AIM 4 buddy list */ | |
| 1670 gaim_debug(GAIM_DEBUG_MISC, "blist import", "aim 4\n"); | |
| 1671 rewind(f); | |
| 1672 buf = translate_blt(f); | |
| 1673 } else if (strstr(first, "group") != NULL) { | |
| 1674 /* AIM 3 buddy list */ | |
| 1675 gaim_debug(GAIM_DEBUG_MISC, "blist import", "aim 3\n"); | |
| 1676 rewind(f); | |
| 1677 buf = translate_lst(f); | |
| 1678 } else if (!g_strncasecmp(first, "[User]", strlen("[User]"))) { | |
| 1679 /* GnomeICU (hopefully) */ | |
| 1680 gaim_debug(GAIM_DEBUG_MISC, "blist import", "gnomeicu\n"); | |
| 1681 rewind(f); | |
| 1682 buf = translate_gnomeicu(f); | |
| 1683 | |
| 1684 } else | |
| 1685 #endif | |
| 1686 if (first[0] == 'm') { | |
| 1687 /* Gaim buddy list - no translation */ | |
| 1688 char buf2[BUF_LONG * 2]; | |
| 1689 buf = g_string_new(""); | |
| 1690 rewind(f); | |
| 1691 while (1) { | |
| 1692 len = fread(buf2, 1, BUF_LONG * 2 - 1, f); | |
| 1693 if (len <= 0) | |
| 1694 break; | |
| 1695 buf2[len] = '\0'; | |
| 1696 buf = g_string_append(buf, buf2); | |
| 1697 if (len != BUF_LONG * 2 - 1) | |
| 1698 break; | |
| 1699 } | |
| 1700 } | |
| 1701 | |
| 1702 fclose(f); | |
| 1703 | |
| 1704 if (buf) { | |
| 1705 buf = g_string_prepend(buf, "toc_set_config {"); | |
| 1706 buf = g_string_append(buf, "}\n"); | |
| 1707 parse_toc_buddy_list(account, buf->str); | |
| 1708 g_string_free(buf, TRUE); | |
| 1709 } | |
| 1710 } | |
| 1711 | |
| 6695 | 1712 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account) { |
| 1713 GaimBlistNode *cnode, *bnode; | |
| 1714 for(cnode = ((GaimBlistNode *)g)->child; cnode; cnode = cnode->next) { | |
| 1715 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1716 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1717 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 1718 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
| 1719 if((!account && gaim_account_is_connected(buddy->account)) | |
| 1720 || buddy->account == account) | |
| 1721 return TRUE; | |
| 1722 } | |
| 1723 } | |
| 1724 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
| 1725 GaimBlistChat *chat = (GaimBlistChat *)cnode; | |
| 1726 if((!account && gaim_account_is_connected(chat->account)) | |
| 1727 || chat->account == account) | |
| 1728 return TRUE; | |
| 1729 } | |
| 5228 | 1730 } |
| 1731 return FALSE; | |
| 1732 } | |
| 1733 | |
| 1734 static gboolean blist_safe_to_write = FALSE; | |
| 1735 | |
| 6695 | 1736 GaimGroup *blist_parser_group = NULL; |
| 1737 GaimContact *blist_parser_contact = NULL; | |
| 5228 | 1738 static char *blist_parser_account_name = NULL; |
| 1739 static int blist_parser_account_protocol = 0; | |
| 5234 | 1740 static char *blist_parser_chat_alias = NULL; |
| 1741 static char *blist_parser_component_name = NULL; | |
| 1742 static char *blist_parser_component_value = NULL; | |
| 5228 | 1743 static char *blist_parser_buddy_name = NULL; |
| 1744 static char *blist_parser_buddy_alias = NULL; | |
| 1745 static char *blist_parser_setting_name = NULL; | |
| 1746 static char *blist_parser_setting_value = NULL; | |
| 1747 static GHashTable *blist_parser_buddy_settings = NULL; | |
| 5906 | 1748 static GHashTable *blist_parser_chat_settings = NULL; |
| 5228 | 1749 static GHashTable *blist_parser_group_settings = NULL; |
| 5234 | 1750 static GHashTable *blist_parser_chat_components = NULL; |
| 5228 | 1751 static int blist_parser_privacy_mode = 0; |
| 1752 static GList *tag_stack = NULL; | |
| 1753 enum { | |
| 1754 BLIST_TAG_GAIM, | |
| 1755 BLIST_TAG_BLIST, | |
| 1756 BLIST_TAG_GROUP, | |
| 5234 | 1757 BLIST_TAG_CHAT, |
| 1758 BLIST_TAG_COMPONENT, | |
| 6695 | 1759 BLIST_TAG_CONTACT, |
| 5228 | 1760 BLIST_TAG_BUDDY, |
| 1761 BLIST_TAG_NAME, | |
| 1762 BLIST_TAG_ALIAS, | |
| 1763 BLIST_TAG_SETTING, | |
| 1764 BLIST_TAG_PRIVACY, | |
| 1765 BLIST_TAG_ACCOUNT, | |
| 1766 BLIST_TAG_PERMIT, | |
| 1767 BLIST_TAG_BLOCK, | |
| 1768 BLIST_TAG_IGNORE | |
| 1769 }; | |
| 1770 static gboolean blist_parser_error_occurred = FALSE; | |
| 1771 | |
| 1772 static void blist_start_element_handler (GMarkupParseContext *context, | |
| 1773 const gchar *element_name, | |
| 1774 const gchar **attribute_names, | |
| 1775 const gchar **attribute_values, | |
| 1776 gpointer user_data, | |
| 1777 GError **error) { | |
| 1778 int i; | |
| 1779 | |
| 1780 if(!strcmp(element_name, "gaim")) { | |
| 1781 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_GAIM)); | |
| 1782 } else if(!strcmp(element_name, "blist")) { | |
| 1783 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BLIST)); | |
| 1784 } else if(!strcmp(element_name, "group")) { | |
| 6778 | 1785 char *name = NULL; |
| 5228 | 1786 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_GROUP)); |
| 1787 for(i=0; attribute_names[i]; i++) { | |
| 1788 if(!strcmp(attribute_names[i], "name")) { | |
| 6778 | 1789 name = attribute_values[i]; |
| 5228 | 1790 } |
| 1791 } | |
| 6778 | 1792 if(name) { |
| 1793 blist_parser_group = gaim_group_new(name); | |
| 6695 | 1794 gaim_blist_add_group(blist_parser_group, |
| 5634 | 1795 gaim_blist_get_last_sibling(gaimbuddylist->root)); |
| 5228 | 1796 } |
| 6695 | 1797 } else if(!strcmp(element_name, "contact")) { |
| 6755 | 1798 char *alias = NULL; |
| 6695 | 1799 tag_stack = g_list_prepend(tag_stack, |
| 1800 GINT_TO_POINTER(BLIST_TAG_CONTACT)); | |
| 1801 | |
| 6755 | 1802 for(i=0; attribute_names[i]; i++) { |
| 1803 if(!strcmp(attribute_names[i], "alias")) { | |
| 1804 g_free(alias); | |
| 1805 alias = g_strdup(attribute_values[i]); | |
| 1806 } | |
| 1807 } | |
| 1808 | |
| 6695 | 1809 blist_parser_contact = gaim_contact_new(); |
| 1810 gaim_blist_add_contact(blist_parser_contact, blist_parser_group, | |
| 1811 gaim_blist_get_last_sibling(((GaimBlistNode*)blist_parser_group)->child)); | |
| 6755 | 1812 |
| 1813 if(alias) { | |
| 1814 gaim_contact_set_alias(blist_parser_contact, alias); | |
| 1815 g_free(alias); | |
| 1816 } | |
| 5234 | 1817 } else if(!strcmp(element_name, "chat")) { |
| 1818 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_CHAT)); | |
| 1819 for(i=0; attribute_names[i]; i++) { | |
| 1820 if(!strcmp(attribute_names[i], "account")) { | |
| 1821 g_free(blist_parser_account_name); | |
| 1822 blist_parser_account_name = g_strdup(attribute_values[i]); | |
| 1823 } else if(!strcmp(attribute_names[i], "protocol")) { | |
| 1824 blist_parser_account_protocol = atoi(attribute_values[i]); | |
| 1825 } | |
| 1826 } | |
| 5228 | 1827 } else if(!strcmp(element_name, "buddy")) { |
| 1828 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BUDDY)); | |
| 1829 for(i=0; attribute_names[i]; i++) { | |
| 1830 if(!strcmp(attribute_names[i], "account")) { | |
| 1831 g_free(blist_parser_account_name); | |
| 1832 blist_parser_account_name = g_strdup(attribute_values[i]); | |
| 1833 } else if(!strcmp(attribute_names[i], "protocol")) { | |
| 1834 blist_parser_account_protocol = atoi(attribute_values[i]); | |
| 1835 } | |
| 1836 } | |
| 1837 } else if(!strcmp(element_name, "name")) { | |
| 1838 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_NAME)); | |
| 1839 } else if(!strcmp(element_name, "alias")) { | |
| 1840 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_ALIAS)); | |
| 1841 } else if(!strcmp(element_name, "setting")) { | |
| 1842 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_SETTING)); | |
| 1843 for(i=0; attribute_names[i]; i++) { | |
| 1844 if(!strcmp(attribute_names[i], "name")) { | |
| 1845 g_free(blist_parser_setting_name); | |
| 1846 blist_parser_setting_name = g_strdup(attribute_values[i]); | |
| 1847 } | |
| 1848 } | |
| 5234 | 1849 } else if(!strcmp(element_name, "component")) { |
| 1850 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_COMPONENT)); | |
| 1851 for(i=0; attribute_names[i]; i++) { | |
| 1852 if(!strcmp(attribute_names[i], "name")) { | |
| 1853 g_free(blist_parser_component_name); | |
| 1854 blist_parser_component_name = g_strdup(attribute_values[i]); | |
| 1855 } | |
| 1856 } | |
| 1857 | |
| 5228 | 1858 } else if(!strcmp(element_name, "privacy")) { |
| 1859 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PRIVACY)); | |
| 1860 } else if(!strcmp(element_name, "account")) { | |
| 1861 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_ACCOUNT)); | |
| 1862 for(i=0; attribute_names[i]; i++) { | |
| 1863 if(!strcmp(attribute_names[i], "protocol")) | |
| 1864 blist_parser_account_protocol = atoi(attribute_values[i]); | |
| 1865 else if(!strcmp(attribute_names[i], "mode")) | |
| 1866 blist_parser_privacy_mode = atoi(attribute_values[i]); | |
| 1867 else if(!strcmp(attribute_names[i], "name")) { | |
| 1868 g_free(blist_parser_account_name); | |
| 1869 blist_parser_account_name = g_strdup(attribute_values[i]); | |
| 1870 } | |
| 1871 } | |
| 1872 } else if(!strcmp(element_name, "permit")) { | |
| 1873 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PERMIT)); | |
| 1874 } else if(!strcmp(element_name, "block")) { | |
| 1875 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BLOCK)); | |
| 1876 } else if(!strcmp(element_name, "ignore")) { | |
| 1877 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_IGNORE)); | |
| 1878 } | |
| 1879 } | |
| 1880 | |
| 1881 static void blist_end_element_handler(GMarkupParseContext *context, | |
| 1882 const gchar *element_name, gpointer user_data, GError **error) { | |
| 1883 if(!strcmp(element_name, "gaim")) { | |
| 1884 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1885 } else if(!strcmp(element_name, "blist")) { | |
| 1886 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1887 } else if(!strcmp(element_name, "group")) { | |
| 1888 if(blist_parser_group_settings) { | |
| 6778 | 1889 g_hash_table_destroy(blist_parser_group->settings); |
| 1890 blist_parser_group->settings = blist_parser_group_settings; | |
| 5228 | 1891 } |
| 1892 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1893 blist_parser_group_settings = NULL; | |
| 6695 | 1894 blist_parser_group = NULL; |
| 5234 | 1895 } else if(!strcmp(element_name, "chat")) { |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1896 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5234 | 1897 blist_parser_account_protocol); |
| 5237 | 1898 if(account) { |
| 6695 | 1899 GaimBlistChat *chat = gaim_blist_chat_new(account, |
| 1900 blist_parser_chat_alias, blist_parser_chat_components); | |
| 6778 | 1901 gaim_blist_add_chat(chat,blist_parser_group, |
| 1902 gaim_blist_get_last_child((GaimBlistNode*)blist_parser_group)); | |
| 5906 | 1903 if(blist_parser_chat_settings) { |
| 1904 g_hash_table_destroy(chat->settings); | |
| 1905 chat->settings = blist_parser_chat_settings; | |
| 1906 } | |
| 5234 | 1907 } |
| 1908 g_free(blist_parser_chat_alias); | |
| 1909 blist_parser_chat_alias = NULL; | |
| 1910 g_free(blist_parser_account_name); | |
| 1911 blist_parser_account_name = NULL; | |
| 1912 blist_parser_chat_components = NULL; | |
| 5906 | 1913 blist_parser_chat_settings = NULL; |
| 5234 | 1914 tag_stack = g_list_delete_link(tag_stack, tag_stack); |
| 6695 | 1915 } else if(!strcmp(element_name, "contact")) { |
| 1916 if(blist_parser_contact && !blist_parser_contact->node.child) | |
| 1917 gaim_blist_remove_contact(blist_parser_contact); | |
| 1918 blist_parser_contact = NULL; | |
| 5228 | 1919 tag_stack = g_list_delete_link(tag_stack, tag_stack); |
| 1920 } else if(!strcmp(element_name, "buddy")) { | |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1921 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5228 | 1922 blist_parser_account_protocol); |
| 1923 if(account) { | |
| 6695 | 1924 GaimBuddy *b = gaim_buddy_new(account, blist_parser_buddy_name, blist_parser_buddy_alias); |
| 1925 gaim_blist_add_buddy(b,blist_parser_contact, blist_parser_group, | |
| 1926 gaim_blist_get_last_child((GaimBlistNode*)blist_parser_contact)); | |
| 5228 | 1927 if(blist_parser_buddy_settings) { |
| 1928 g_hash_table_destroy(b->settings); | |
| 1929 b->settings = blist_parser_buddy_settings; | |
| 1930 } | |
| 1931 } | |
| 1932 g_free(blist_parser_buddy_name); | |
| 1933 blist_parser_buddy_name = NULL; | |
| 1934 g_free(blist_parser_buddy_alias); | |
| 1935 blist_parser_buddy_alias = NULL; | |
| 1936 g_free(blist_parser_account_name); | |
| 1937 blist_parser_account_name = NULL; | |
| 1938 blist_parser_buddy_settings = NULL; | |
| 1939 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1940 } else if(!strcmp(element_name, "name")) { | |
| 1941 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1942 } else if(!strcmp(element_name, "alias")) { | |
| 1943 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 5234 | 1944 } else if(!strcmp(element_name, "component")) { |
| 1945 if(!blist_parser_chat_components) | |
| 1946 blist_parser_chat_components = g_hash_table_new_full(g_str_hash, | |
| 1947 g_str_equal, g_free, g_free); | |
| 1948 if(blist_parser_component_name && blist_parser_component_value) { | |
| 1949 g_hash_table_replace(blist_parser_chat_components, | |
| 1950 g_strdup(blist_parser_component_name), | |
| 1951 g_strdup(blist_parser_component_value)); | |
| 1952 } | |
| 1953 g_free(blist_parser_component_name); | |
| 1954 g_free(blist_parser_component_value); | |
| 1955 blist_parser_component_name = NULL; | |
| 1956 blist_parser_component_value = NULL; | |
| 1957 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 5228 | 1958 } else if(!strcmp(element_name, "setting")) { |
| 1959 if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_BUDDY) { | |
| 1960 if(!blist_parser_buddy_settings) | |
| 1961 blist_parser_buddy_settings = g_hash_table_new_full(g_str_hash, | |
| 1962 g_str_equal, g_free, g_free); | |
| 1963 if(blist_parser_setting_name && blist_parser_setting_value) { | |
| 1964 g_hash_table_replace(blist_parser_buddy_settings, | |
| 1965 g_strdup(blist_parser_setting_name), | |
| 1966 g_strdup(blist_parser_setting_value)); | |
| 1967 } | |
| 5906 | 1968 } else if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_CHAT) { |
| 1969 if(!blist_parser_chat_settings) | |
| 1970 blist_parser_chat_settings = g_hash_table_new_full(g_str_hash, | |
| 1971 g_str_equal, g_free, g_free); | |
| 1972 if(blist_parser_setting_name && blist_parser_setting_value) { | |
| 6307 | 1973 g_hash_table_replace(blist_parser_chat_settings, |
| 5906 | 1974 g_strdup(blist_parser_setting_name), |
| 1975 g_strdup(blist_parser_setting_value)); | |
| 1976 } | |
| 5228 | 1977 } else if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_GROUP) { |
| 1978 if(!blist_parser_group_settings) | |
| 1979 blist_parser_group_settings = g_hash_table_new_full(g_str_hash, | |
| 1980 g_str_equal, g_free, g_free); | |
| 1981 if(blist_parser_setting_name && blist_parser_setting_value) { | |
| 1982 g_hash_table_replace(blist_parser_group_settings, | |
| 1983 g_strdup(blist_parser_setting_name), | |
| 1984 g_strdup(blist_parser_setting_value)); | |
| 1985 } | |
| 1986 } | |
| 1987 g_free(blist_parser_setting_name); | |
| 1988 g_free(blist_parser_setting_value); | |
| 1989 blist_parser_setting_name = NULL; | |
| 1990 blist_parser_setting_value = NULL; | |
| 1991 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1992 } else if(!strcmp(element_name, "privacy")) { | |
| 1993 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1994 } else if(!strcmp(element_name, "account")) { | |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1995 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5228 | 1996 blist_parser_account_protocol); |
| 1997 if(account) { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1998 account->perm_deny = blist_parser_privacy_mode; |
| 5228 | 1999 } |
| 2000 g_free(blist_parser_account_name); | |
| 2001 blist_parser_account_name = NULL; | |
| 2002 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 2003 } else if(!strcmp(element_name, "permit")) { | |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2004 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5228 | 2005 blist_parser_account_protocol); |
| 2006 if(account) { | |
|
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
2007 gaim_privacy_permit_add(account, blist_parser_buddy_name, TRUE); |
| 5228 | 2008 } |
| 2009 g_free(blist_parser_buddy_name); | |
| 2010 blist_parser_buddy_name = NULL; | |
| 2011 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 2012 } else if(!strcmp(element_name, "block")) { | |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2013 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5228 | 2014 blist_parser_account_protocol); |
| 2015 if(account) { | |
|
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
2016 gaim_privacy_deny_add(account, blist_parser_buddy_name, TRUE); |
| 5228 | 2017 } |
| 2018 g_free(blist_parser_buddy_name); | |
| 2019 blist_parser_buddy_name = NULL; | |
| 2020 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 2021 } else if(!strcmp(element_name, "ignore")) { | |
| 2022 /* we'll apparently do something with this later */ | |
| 2023 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 2024 } | |
| 2025 } | |
| 2026 | |
| 2027 static void blist_text_handler(GMarkupParseContext *context, const gchar *text, | |
| 2028 gsize text_len, gpointer user_data, GError **error) { | |
| 2029 switch(GPOINTER_TO_INT(tag_stack->data)) { | |
| 2030 case BLIST_TAG_NAME: | |
| 2031 blist_parser_buddy_name = g_strndup(text, text_len); | |
| 2032 break; | |
| 2033 case BLIST_TAG_ALIAS: | |
| 5234 | 2034 if(tag_stack->next && |
| 2035 GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_BUDDY) | |
| 2036 blist_parser_buddy_alias = g_strndup(text, text_len); | |
| 2037 else if(tag_stack->next && | |
| 2038 GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_CHAT) | |
| 2039 blist_parser_chat_alias = g_strndup(text, text_len); | |
| 5228 | 2040 break; |
| 2041 case BLIST_TAG_PERMIT: | |
| 2042 case BLIST_TAG_BLOCK: | |
| 2043 case BLIST_TAG_IGNORE: | |
| 2044 blist_parser_buddy_name = g_strndup(text, text_len); | |
| 2045 break; | |
| 5234 | 2046 case BLIST_TAG_COMPONENT: |
| 2047 blist_parser_component_value = g_strndup(text, text_len); | |
| 2048 break; | |
| 5228 | 2049 case BLIST_TAG_SETTING: |
| 2050 blist_parser_setting_value = g_strndup(text, text_len); | |
| 2051 break; | |
| 2052 default: | |
| 2053 break; | |
| 2054 } | |
| 2055 } | |
| 2056 | |
| 2057 static void blist_error_handler(GMarkupParseContext *context, GError *error, | |
| 2058 gpointer user_data) { | |
| 2059 blist_parser_error_occurred = TRUE; | |
| 2060 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
| 2061 "Error parsing blist.xml: %s\n", error->message); | |
| 2062 } | |
| 2063 | |
| 2064 static GMarkupParser blist_parser = { | |
| 2065 blist_start_element_handler, | |
| 2066 blist_end_element_handler, | |
| 2067 blist_text_handler, | |
| 2068 NULL, | |
| 2069 blist_error_handler | |
| 2070 }; | |
| 2071 | |
| 2072 static gboolean gaim_blist_read(const char *filename) { | |
| 2073 gchar *contents = NULL; | |
| 2074 gsize length; | |
| 2075 GMarkupParseContext *context; | |
| 2076 GError *error = NULL; | |
| 2077 | |
| 2078 gaim_debug(GAIM_DEBUG_INFO, "blist import", | |
| 2079 "Reading %s\n", filename); | |
| 2080 if(!g_file_get_contents(filename, &contents, &length, &error)) { | |
| 2081 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
| 2082 "Error reading blist: %s\n", error->message); | |
| 2083 g_error_free(error); | |
| 2084 return FALSE; | |
| 2085 } | |
| 2086 | |
| 2087 context = g_markup_parse_context_new(&blist_parser, 0, NULL, NULL); | |
| 2088 | |
| 2089 if(!g_markup_parse_context_parse(context, contents, length, NULL)) { | |
| 2090 g_markup_parse_context_free(context); | |
| 2091 g_free(contents); | |
| 2092 return FALSE; | |
| 2093 } | |
| 2094 | |
| 2095 if(!g_markup_parse_context_end_parse(context, NULL)) { | |
| 2096 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
| 2097 "Error parsing %s\n", filename); | |
| 2098 g_markup_parse_context_free(context); | |
| 2099 g_free(contents); | |
| 2100 return FALSE; | |
| 2101 } | |
| 2102 | |
| 2103 g_markup_parse_context_free(context); | |
| 2104 g_free(contents); | |
| 2105 | |
| 2106 if(blist_parser_error_occurred) | |
| 2107 return FALSE; | |
| 2108 | |
| 2109 gaim_debug(GAIM_DEBUG_INFO, "blist import", "Finished reading %s\n", | |
| 2110 filename); | |
| 2111 | |
| 2112 return TRUE; | |
| 2113 } | |
| 2114 | |
| 2115 void gaim_blist_load() { | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2116 GList *accts; |
| 5228 | 2117 char *user_dir = gaim_user_dir(); |
| 2118 char *filename; | |
| 2119 char *msg; | |
| 2120 | |
| 2121 blist_safe_to_write = TRUE; | |
| 2122 | |
| 2123 if(!user_dir) | |
| 2124 return; | |
| 2125 | |
| 2126 filename = g_build_filename(user_dir, "blist.xml", NULL); | |
| 2127 | |
| 2128 if(g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
| 2129 if(!gaim_blist_read(filename)) { | |
| 2130 msg = g_strdup_printf(_("An error was encountered parsing your " | |
| 2131 "buddy list. It has not been loaded.")); | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2132 gaim_notify_error(NULL, NULL, _("Buddy List Error"), msg); |
| 5228 | 2133 g_free(msg); |
| 2134 } | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2135 } else if(g_list_length(gaim_accounts_get_all())) { |
| 5228 | 2136 /* read in the old lists, then save to the new format */ |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2137 for(accts = gaim_accounts_get_all(); accts; accts = accts->next) { |
| 5228 | 2138 do_import(accts->data, NULL); |
| 2139 } | |
| 2140 gaim_blist_save(); | |
| 2141 } | |
| 2142 | |
| 2143 g_free(filename); | |
| 2144 } | |
| 2145 | |
| 2146 static void blist_print_group_settings(gpointer key, gpointer data, | |
| 2147 gpointer user_data) { | |
| 2148 char *key_val; | |
| 2149 char *data_val; | |
| 2150 FILE *file = user_data; | |
| 2151 | |
| 2152 if(!key || !data) | |
| 2153 return; | |
| 2154 | |
| 2155 key_val = g_markup_escape_text(key, -1); | |
| 2156 data_val = g_markup_escape_text(data, -1); | |
| 2157 | |
| 2158 fprintf(file, "\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
| 2159 data_val); | |
| 2160 g_free(key_val); | |
| 2161 g_free(data_val); | |
| 2162 } | |
| 2163 | |
| 2164 static void blist_print_buddy_settings(gpointer key, gpointer data, | |
| 2165 gpointer user_data) { | |
| 2166 char *key_val; | |
| 2167 char *data_val; | |
| 2168 FILE *file = user_data; | |
| 2169 | |
| 2170 if(!key || !data) | |
| 2171 return; | |
| 2172 | |
| 2173 key_val = g_markup_escape_text(key, -1); | |
| 2174 data_val = g_markup_escape_text(data, -1); | |
| 2175 | |
| 2176 fprintf(file, "\t\t\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
| 2177 data_val); | |
| 2178 g_free(key_val); | |
| 2179 g_free(data_val); | |
| 2180 } | |
| 2181 | |
| 6695 | 2182 static void blist_print_cnode_settings(gpointer key, gpointer data, |
| 2183 gpointer user_data) { | |
| 2184 char *key_val; | |
| 2185 char *data_val; | |
| 2186 FILE *file = user_data; | |
| 2187 | |
| 2188 if(!key || !data) | |
| 2189 return; | |
| 2190 | |
| 2191 key_val = g_markup_escape_text(key, -1); | |
| 2192 data_val = g_markup_escape_text(data, -1); | |
| 2193 | |
| 2194 fprintf(file, "\t\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
| 2195 data_val); | |
| 2196 g_free(key_val); | |
| 2197 g_free(data_val); | |
| 2198 } | |
| 2199 | |
| 5234 | 2200 static void blist_print_chat_components(gpointer key, gpointer data, |
| 2201 gpointer user_data) { | |
| 2202 char *key_val; | |
| 2203 char *data_val; | |
| 2204 FILE *file = user_data; | |
| 2205 | |
| 2206 if(!key || !data) | |
| 2207 return; | |
| 2208 | |
| 2209 key_val = g_markup_escape_text(key, -1); | |
| 2210 data_val = g_markup_escape_text(data, -1); | |
| 2211 | |
| 2212 fprintf(file, "\t\t\t\t<component name=\"%s\">%s</component>\n", key_val, | |
| 2213 data_val); | |
| 2214 g_free(key_val); | |
| 2215 g_free(data_val); | |
| 2216 } | |
| 2217 | |
| 6695 | 2218 static void print_buddy(FILE *file, GaimBuddy *buddy) { |
| 2219 char *bud_name = g_markup_escape_text(buddy->name, -1); | |
| 2220 char *bud_alias = NULL; | |
| 2221 char *acct_name = g_markup_escape_text(buddy->account->username, -1); | |
| 2222 if(buddy->alias) | |
| 2223 bud_alias= g_markup_escape_text(buddy->alias, -1); | |
| 2224 fprintf(file, "\t\t\t\t<buddy protocol=\"%d\" " | |
| 2225 "account=\"%s\">\n", | |
| 2226 gaim_account_get_protocol(buddy->account), | |
| 2227 acct_name); | |
| 2228 fprintf(file, "\t\t\t\t\t<name>%s</name>\n", bud_name); | |
| 2229 if(bud_alias) { | |
| 2230 fprintf(file, "\t\t\t\t\t<alias>%s</alias>\n", bud_alias); | |
| 2231 } | |
| 2232 g_hash_table_foreach(buddy->settings, blist_print_buddy_settings, file); | |
| 2233 fprintf(file, "\t\t\t\t</buddy>\n"); | |
| 2234 g_free(bud_name); | |
| 2235 g_free(bud_alias); | |
| 2236 g_free(acct_name); | |
| 2237 } | |
| 2238 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2239 static void gaim_blist_write(FILE *file, GaimAccount *exp_acct) { |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2240 GList *accounts; |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2241 GSList *buds; |
| 6695 | 2242 GaimBlistNode *gnode, *cnode, *bnode; |
| 5228 | 2243 fprintf(file, "<?xml version='1.0' encoding='UTF-8' ?>\n"); |
| 2244 fprintf(file, "<gaim version=\"1\">\n"); | |
| 2245 fprintf(file, "\t<blist>\n"); | |
| 2246 | |
| 2247 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
| 6695 | 2248 GaimGroup *group; |
| 2249 | |
| 5228 | 2250 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
| 2251 continue; | |
| 6695 | 2252 |
| 2253 group = (GaimGroup *)gnode; | |
| 5228 | 2254 if(!exp_acct || gaim_group_on_account(group, exp_acct)) { |
| 2255 char *group_name = g_markup_escape_text(group->name, -1); | |
| 2256 fprintf(file, "\t\t<group name=\"%s\">\n", group_name); | |
| 2257 g_hash_table_foreach(group->settings, blist_print_group_settings, file); | |
| 6695 | 2258 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 2259 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 6755 | 2260 GaimContact *contact = (GaimContact*)cnode; |
| 2261 fprintf(file, "\t\t\t<contact"); | |
| 2262 if(contact->alias) { | |
| 2263 char *alias = g_markup_escape_text(contact->alias, -1); | |
| 2264 fprintf(file, " alias=\"%s\"", alias); | |
| 2265 g_free(alias); | |
| 2266 } | |
| 2267 fprintf(file, ">\n"); | |
| 6695 | 2268 |
| 2269 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 2270 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 2271 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
| 2272 if(!exp_acct || buddy->account == exp_acct) { | |
| 2273 print_buddy(file, buddy); | |
| 2274 } | |
| 5234 | 2275 } |
| 5228 | 2276 } |
| 6695 | 2277 |
| 2278 fprintf(file, "\t\t\t</contact>\n"); | |
| 2279 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
| 2280 GaimBlistChat *chat = (GaimBlistChat *)cnode; | |
| 5234 | 2281 if(!exp_acct || chat->account == exp_acct) { |
| 2282 char *acct_name = g_markup_escape_text(chat->account->username, -1); | |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2283 fprintf(file, "\t\t\t<chat protocol=\"%d\" account=\"%s\">\n", |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2284 gaim_account_get_protocol(chat->account), |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2285 acct_name); |
| 5237 | 2286 if(chat->alias) { |
| 2287 char *chat_alias = g_markup_escape_text(chat->alias, -1); | |
| 2288 fprintf(file, "\t\t\t\t<alias>%s</alias>\n", chat_alias); | |
| 2289 g_free(chat_alias); | |
| 2290 } | |
| 5234 | 2291 g_hash_table_foreach(chat->components, |
| 2292 blist_print_chat_components, file); | |
| 5906 | 2293 g_hash_table_foreach(chat->settings, |
| 6695 | 2294 blist_print_cnode_settings, file); |
| 5234 | 2295 fprintf(file, "\t\t\t</chat>\n"); |
| 5237 | 2296 g_free(acct_name); |
| 5234 | 2297 } |
| 5228 | 2298 } |
| 2299 } | |
| 2300 fprintf(file, "\t\t</group>\n"); | |
| 2301 g_free(group_name); | |
| 2302 } | |
| 2303 } | |
| 2304 | |
| 2305 fprintf(file, "\t</blist>\n"); | |
| 2306 fprintf(file, "\t<privacy>\n"); | |
| 2307 | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2308 for(accounts = gaim_accounts_get_all(); |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2309 accounts != NULL; |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2310 accounts = accounts->next) { |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2311 |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2312 GaimAccount *account = accounts->data; |
| 5228 | 2313 char *acct_name = g_markup_escape_text(account->username, -1); |
| 2314 if(!exp_acct || account == exp_acct) { | |
| 2315 fprintf(file, "\t\t<account protocol=\"%d\" name=\"%s\" " | |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2316 "mode=\"%d\">\n", gaim_account_get_protocol(account), |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2317 acct_name, account->perm_deny); |
| 5228 | 2318 for(buds = account->permit; buds; buds = buds->next) { |
| 2319 char *bud_name = g_markup_escape_text(buds->data, -1); | |
| 2320 fprintf(file, "\t\t\t<permit>%s</permit>\n", bud_name); | |
| 2321 g_free(bud_name); | |
| 2322 } | |
| 2323 for(buds = account->deny; buds; buds = buds->next) { | |
| 2324 char *bud_name = g_markup_escape_text(buds->data, -1); | |
| 2325 fprintf(file, "\t\t\t<block>%s</block>\n", bud_name); | |
| 2326 g_free(bud_name); | |
| 2327 } | |
| 2328 fprintf(file, "\t\t</account>\n"); | |
| 2329 } | |
| 2330 g_free(acct_name); | |
| 2331 } | |
| 2332 | |
| 2333 fprintf(file, "\t</privacy>\n"); | |
| 2334 fprintf(file, "</gaim>\n"); | |
| 2335 } | |
| 2336 | |
| 2337 void gaim_blist_save() { | |
| 2338 FILE *file; | |
| 2339 char *user_dir = gaim_user_dir(); | |
| 2340 char *filename; | |
| 2341 char *filename_real; | |
| 2342 | |
| 2343 if(!user_dir) | |
| 2344 return; | |
| 2345 if(!blist_safe_to_write) { | |
| 2346 gaim_debug(GAIM_DEBUG_WARNING, "blist save", | |
| 2347 "AHH!! Tried to write the blist before we read it!\n"); | |
| 2348 return; | |
| 2349 } | |
| 2350 | |
| 2351 file = fopen(user_dir, "r"); | |
| 2352 if(!file) | |
| 2353 mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); | |
| 2354 else | |
| 2355 fclose(file); | |
| 2356 | |
| 2357 filename = g_build_filename(user_dir, "blist.xml.save", NULL); | |
| 2358 | |
| 2359 if((file = fopen(filename, "w"))) { | |
| 2360 gaim_blist_write(file, NULL); | |
| 2361 fclose(file); | |
| 2362 chmod(filename, S_IRUSR | S_IWUSR); | |
| 2363 } else { | |
| 2364 gaim_debug(GAIM_DEBUG_ERROR, "blist save", "Unable to write %s\n", | |
| 2365 filename); | |
| 2366 } | |
| 2367 | |
| 2368 filename_real = g_build_filename(user_dir, "blist.xml", NULL); | |
| 2369 | |
| 2370 if(rename(filename, filename_real) < 0) | |
| 2371 gaim_debug(GAIM_DEBUG_ERROR, "blist save", | |
| 2372 "Error renaming %s to %s\n", filename, filename_real); | |
| 2373 | |
| 2374 | |
| 2375 g_free(filename); | |
| 2376 g_free(filename_real); | |
| 2377 } | |
| 2378 | |
| 6695 | 2379 void gaim_group_set_setting(GaimGroup *g, const char *key, |
| 5228 | 2380 const char *value) { |
| 2381 if(!g) | |
| 2382 return; | |
| 2383 g_hash_table_replace(g->settings, g_strdup(key), g_strdup(value)); | |
| 2384 } | |
| 2385 | |
| 6695 | 2386 char *gaim_group_get_setting(GaimGroup *g, const char *key) { |
| 5228 | 2387 if(!g) |
| 2388 return NULL; | |
| 2389 return g_strdup(g_hash_table_lookup(g->settings, key)); | |
| 2390 } | |
| 2391 | |
| 6695 | 2392 void gaim_blist_chat_set_setting(GaimBlistChat *c, const char *key, |
| 5906 | 2393 const char *value) |
| 2394 { | |
| 2395 if(!c) | |
| 2396 return; | |
| 2397 g_hash_table_replace(c->settings, g_strdup(key), g_strdup(value)); | |
| 2398 } | |
| 2399 | |
| 6695 | 2400 char *gaim_blist_chat_get_setting(GaimBlistChat *c, const char *key) |
| 5906 | 2401 { |
| 2402 if(!c) | |
| 2403 return NULL; | |
| 2404 return g_strdup(g_hash_table_lookup(c->settings, key)); | |
| 2405 } | |
| 2406 | |
| 6695 | 2407 void gaim_buddy_set_setting(GaimBuddy *b, const char *key, |
| 5228 | 2408 const char *value) { |
| 2409 if(!b) | |
| 2410 return; | |
| 2411 g_hash_table_replace(b->settings, g_strdup(key), g_strdup(value)); | |
| 2412 } | |
| 2413 | |
| 6695 | 2414 char *gaim_buddy_get_setting(GaimBuddy *b, const char *key) { |
| 5228 | 2415 if(!b) |
| 2416 return NULL; | |
| 2417 return g_strdup(g_hash_table_lookup(b->settings, key)); | |
| 2418 } | |
| 2419 | |
| 2420 void gaim_set_blist_ui_ops(struct gaim_blist_ui_ops *ops) | |
| 2421 { | |
| 2422 blist_ui_ops = ops; | |
| 2423 } | |
| 2424 | |
| 2425 struct gaim_blist_ui_ops * | |
| 2426 gaim_get_blist_ui_ops(void) | |
| 2427 { | |
| 2428 return blist_ui_ops; | |
| 2429 } | |
| 2430 | |
| 6695 | 2431 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline) { |
| 5228 | 2432 if(!group) |
| 2433 return 0; | |
| 2434 | |
| 5277 | 2435 return offline ? group->totalsize : group->currentsize; |
| 5228 | 2436 } |
| 2437 | |
| 6695 | 2438 int gaim_blist_get_group_online_count(GaimGroup *group) { |
| 5228 | 2439 if(!group) |
| 2440 return 0; | |
| 2441 | |
| 5277 | 2442 return group->online; |
| 5228 | 2443 } |
| 2444 | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2445 void * |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2446 gaim_blist_get_handle(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2447 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2448 static int handle; |
| 5228 | 2449 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2450 return &handle; |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2451 } |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2452 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2453 void |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2454 gaim_blist_init(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2455 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2456 void *handle = gaim_blist_get_handle(); |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2457 |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2458 gaim_signal_register(handle, "buddy-away", |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2459 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2460 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2461 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2462 |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2463 gaim_signal_register(handle, "buddy-back", |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2464 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2465 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2466 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2467 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2468 gaim_signal_register(handle, "buddy-idle", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2469 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2470 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2471 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2472 gaim_signal_register(handle, "buddy-unidle", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2473 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2474 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2475 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2476 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2477 gaim_signal_register(handle, "buddy-signed-on", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2478 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2479 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2480 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2481 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2482 gaim_signal_register(handle, "buddy-signed-off", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2483 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2484 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2485 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2486 |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2487 gaim_signal_register(handle, "update-idle", gaim_marshal_VOID, NULL, 0); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2488 } |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2489 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2490 void |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2491 gaim_blist_uninit(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2492 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2493 gaim_signals_unregister_by_instance(gaim_blist_get_handle()); |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2494 } |
