Mercurial > pidgin
annotate src/blist.c @ 6774:c4e3cc0693ab
[gaim-migrate @ 7312]
idiot checks
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Sun, 07 Sep 2003 05:10:52 +0000 |
| parents | ea289c6f2382 |
| children | 272b67f33a1e |
| 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; | |
| 611 g_hash_table_remove(gaimbuddylist->buddies, &hb); | |
| 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 | |
| 764 g_hash_table_remove(gaimbuddylist->buddies, &hb); | |
| 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 | |
| 775 if(node && (GAIM_BLIST_NODE_IS_CONTACT(node) || | |
| 776 GAIM_BLIST_NODE_IS_CHAT(node))) { | |
| 777 if(node->next) | |
| 778 node->next->prev = cnode; | |
| 779 cnode->next = node->next; | |
| 780 cnode->prev = node; | |
| 781 cnode->parent = node->parent; | |
| 782 node->next = cnode; | |
| 783 } else { | |
| 784 if(gnode->child) | |
| 785 gnode->child->prev = cnode; | |
| 786 cnode->prev = NULL; | |
| 787 cnode->next = gnode->child; | |
| 788 gnode->child = cnode; | |
| 789 cnode->parent = gnode; | |
| 790 } | |
| 791 | |
| 792 if(contact->online > 0) | |
| 793 g->online++; | |
| 794 if(contact->currentsize > 0) | |
| 795 g->currentsize++; | |
| 796 g->totalsize++; | |
| 797 | |
| 798 if(ops && cnode->child) | |
| 799 ops->update(gaimbuddylist, cnode); | |
| 800 if (save) | |
| 801 gaim_blist_save(); | |
| 802 } | |
| 803 | |
| 804 void gaim_blist_add_group (GaimGroup *group, GaimBlistNode *node) | |
| 5228 | 805 { |
| 806 struct gaim_blist_ui_ops *ops; | |
| 807 GaimBlistNode *gnode = (GaimBlistNode*)group; | |
| 808 gboolean save = FALSE; | |
| 809 | |
| 6774 | 810 g_return_if_fail(group != NULL); |
| 811 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP((GaimBlistNode*)group)); | |
| 812 | |
| 5228 | 813 if (!gaimbuddylist) |
| 814 gaimbuddylist = gaim_blist_new(); | |
| 815 ops = gaimbuddylist->ui_ops; | |
| 816 | |
| 817 if (!gaimbuddylist->root) { | |
| 818 gaimbuddylist->root = gnode; | |
| 819 return; | |
| 820 } | |
| 821 | |
| 822 /* if we're moving to overtop of ourselves, do nothing */ | |
| 823 if(gnode == node) | |
| 824 return; | |
| 825 | |
| 826 if (gaim_find_group(group->name)) { | |
| 827 /* This is just being moved */ | |
| 828 | |
| 829 ops->remove(gaimbuddylist, (GaimBlistNode*)group); | |
| 830 | |
| 831 if(gnode == gaimbuddylist->root) | |
| 832 gaimbuddylist->root = gnode->next; | |
| 833 if(gnode->prev) | |
| 834 gnode->prev->next = gnode->next; | |
| 835 if(gnode->next) | |
| 836 gnode->next->prev = gnode->prev; | |
| 837 | |
| 838 save = TRUE; | |
| 839 } | |
| 840 | |
| 6695 | 841 if (node && GAIM_BLIST_NODE_IS_GROUP(node)) { |
| 5634 | 842 gnode->next = node->next; |
| 843 gnode->prev = node; | |
| 844 if(node->next) | |
| 845 node->next->prev = gnode; | |
| 846 node->next = gnode; | |
| 847 } else { | |
| 848 gaimbuddylist->root->prev = gnode; | |
| 849 gnode->next = gaimbuddylist->root; | |
| 850 gnode->prev = NULL; | |
| 851 gaimbuddylist->root = gnode; | |
| 852 } | |
| 853 | |
| 5228 | 854 |
| 855 if (ops) { | |
| 856 ops->update(gaimbuddylist, gnode); | |
| 857 for(node = gnode->child; node; node = node->next) | |
| 858 ops->update(gaimbuddylist, node); | |
| 859 } | |
| 860 if (save) | |
| 861 gaim_blist_save(); | |
| 862 } | |
| 863 | |
| 6695 | 864 void gaim_blist_remove_contact(GaimContact* contact) |
| 5228 | 865 { |
| 866 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 867 | |
| 6695 | 868 GaimBlistNode *gnode, *cnode = (GaimBlistNode*)contact; |
| 869 | |
| 870 gnode = cnode->parent; | |
| 871 | |
| 872 if(cnode->child) { | |
| 873 while(cnode->child) { | |
| 874 gaim_blist_remove_buddy((GaimBuddy*)cnode->child); | |
| 875 } | |
| 876 } else { | |
| 877 if(ops) | |
| 878 ops->remove(gaimbuddylist, cnode); | |
| 879 | |
| 880 if(gnode->child == cnode) | |
| 881 gnode->child = cnode->next; | |
| 882 if(cnode->prev) | |
| 883 cnode->prev->next = cnode->next; | |
| 884 if(cnode->next) | |
| 885 cnode->next->prev = cnode->prev; | |
| 886 | |
| 887 g_free(contact); | |
| 888 } | |
| 889 } | |
| 890 | |
| 6742 | 891 void gaim_blist_remove_buddy (GaimBuddy *buddy) |
| 6695 | 892 { |
| 893 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 894 | |
| 895 GaimBlistNode *cnode, *node = (GaimBlistNode*)buddy; | |
| 896 GaimGroup *group; | |
| 6742 | 897 struct _gaim_hbuddy hb; |
| 5228 | 898 |
| 6695 | 899 cnode = node->parent; |
| 900 group = (GaimGroup *)cnode->parent; | |
| 5228 | 901 |
| 6695 | 902 if(GAIM_BUDDY_IS_ONLINE(buddy)) { |
| 903 ((GaimContact*)cnode)->online--; | |
| 904 if(((GaimContact*)cnode)->online == 0) | |
| 905 group->online--; | |
| 906 } | |
| 907 if(gaim_account_is_connected(buddy->account)) { | |
| 908 ((GaimContact*)cnode)->currentsize--; | |
| 909 if(((GaimContact*)cnode)->currentsize == 0) | |
| 910 group->currentsize--; | |
| 911 } | |
| 912 ((GaimContact*)cnode)->totalsize--; | |
| 913 | |
| 5228 | 914 if (node->prev) |
| 915 node->prev->next = node->next; | |
| 916 if (node->next) | |
| 917 node->next->prev = node->prev; | |
| 6695 | 918 if(cnode->child == node) { |
| 919 cnode->child = node->next; | |
| 920 } | |
| 5228 | 921 |
| 6755 | 922 |
| 5247 | 923 hb.name = normalize(buddy->name); |
| 924 hb.account = buddy->account; | |
| 6695 | 925 hb.group = ((GaimBlistNode*)buddy)->parent->parent; |
| 6742 | 926 g_hash_table_remove(gaimbuddylist->buddies, &hb); |
| 5247 | 927 |
| 5292 | 928 if(buddy->timer > 0) |
| 929 g_source_remove(buddy->timer); | |
| 930 | |
| 5228 | 931 ops->remove(gaimbuddylist, node); |
| 932 g_hash_table_destroy(buddy->settings); | |
| 933 g_free(buddy->name); | |
| 934 g_free(buddy->alias); | |
| 935 g_free(buddy); | |
| 6755 | 936 |
| 937 if(!cnode->child) | |
| 938 gaim_blist_remove_contact((GaimContact*)cnode); | |
| 5228 | 939 } |
| 940 | |
| 6695 | 941 void gaim_blist_remove_chat (GaimBlistChat *chat) |
| 5234 | 942 { |
| 943 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 944 | |
| 945 GaimBlistNode *gnode, *node = (GaimBlistNode*)chat; | |
| 6695 | 946 GaimGroup *group; |
| 5234 | 947 |
| 948 gnode = node->parent; | |
| 6695 | 949 group = (GaimGroup *)gnode; |
| 5234 | 950 |
| 951 if(gnode->child == node) | |
| 952 gnode->child = node->next; | |
| 953 if (node->prev) | |
| 954 node->prev->next = node->next; | |
| 955 if (node->next) | |
| 956 node->next->prev = node->prev; | |
| 5277 | 957 group->totalsize--; |
| 5855 | 958 if (gaim_account_is_connected(chat->account)) { |
| 5277 | 959 group->currentsize--; |
| 5394 | 960 group->online--; |
| 961 } | |
| 5234 | 962 |
| 963 ops->remove(gaimbuddylist, node); | |
| 964 g_hash_table_destroy(chat->components); | |
| 965 g_free(chat->alias); | |
| 966 g_free(chat); | |
| 967 } | |
| 968 | |
| 6695 | 969 void gaim_blist_remove_group (GaimGroup *group) |
| 5228 | 970 { |
| 971 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 972 GaimBlistNode *node = (GaimBlistNode*)group; | |
| 973 | |
| 974 if(node->child) { | |
| 975 char *buf; | |
| 976 int count = 0; | |
| 977 GaimBlistNode *child = node->child; | |
| 978 | |
| 979 while(child) { | |
| 980 count++; | |
| 981 child = child->next; | |
| 982 } | |
| 983 | |
| 6308 | 984 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed " |
| 985 "because its account was not logged in." | |
| 986 " This buddy and the group were not " | |
| 987 "removed.\n", | |
| 988 "%d buddies from group %s were not " | |
| 989 "removed because their accounts were " | |
| 6336 | 990 "not logged in. These buddies and " |
| 991 "the group were not removed.\n", count), | |
| 6308 | 992 count, group->name); |
|
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
993 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); |
| 5228 | 994 g_free(buf); |
| 995 return; | |
| 996 } | |
| 997 | |
| 998 if(gaimbuddylist->root == node) | |
| 999 gaimbuddylist->root = node->next; | |
| 1000 if (node->prev) | |
| 1001 node->prev->next = node->next; | |
| 1002 if (node->next) | |
| 1003 node->next->prev = node->prev; | |
| 1004 | |
| 1005 ops->remove(gaimbuddylist, node); | |
| 1006 g_free(group->name); | |
| 1007 g_free(group); | |
| 1008 } | |
| 1009 | |
| 6695 | 1010 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact) { |
| 1011 GaimBuddy *top = NULL; | |
| 1012 GaimBlistNode *bnode; | |
| 1013 | |
| 1014 for(bnode = ((GaimBlistNode*)contact)->child; bnode; bnode = bnode->next) { | |
| 1015 GaimBuddy *buddy; | |
| 1016 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 1017 continue; | |
| 1018 buddy = (GaimBuddy*)bnode; | |
| 1019 if(!top) { | |
| 1020 top = buddy; | |
| 1021 } else if(GAIM_BUDDY_IS_ONLINE(buddy)) { | |
| 1022 if(!GAIM_BUDDY_IS_ONLINE(top)) { | |
| 1023 top = buddy; | |
| 1024 } else if(!(buddy->uc & UC_UNAVAILABLE) && !buddy->idle && | |
| 1025 (top->uc & UC_UNAVAILABLE || top->idle)) { | |
| 1026 top = buddy; | |
| 1027 } else if(!buddy->idle && top->idle) { | |
| 1028 top = buddy; | |
| 1029 } else if(top->uc & UC_UNAVAILABLE && top->idle && | |
| 1030 (!(buddy->uc & UC_UNAVAILABLE) || !buddy->idle)) { | |
| 1031 top = buddy; | |
| 1032 } | |
| 1033 } | |
| 1034 } | |
| 1035 | |
| 1036 return top; | |
| 1037 } | |
| 1038 | |
| 1039 const char *gaim_get_buddy_alias_only(GaimBuddy *b) { | |
|
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1040 if(!b) |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1041 return NULL; |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1042 |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1043 if(b->alias && b->alias[0]) { |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1044 return b->alias; |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1045 } |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1046 else if (b->server_alias != NULL && |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1047 gaim_prefs_get_bool("/core/buddies/use_server_alias")) { |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1048 |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1049 return b->server_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 |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1052 return NULL; |
| 5228 | 1053 } |
| 1054 | |
| 6695 | 1055 const char * gaim_get_buddy_alias (GaimBuddy *buddy) |
| 5228 | 1056 { |
| 6755 | 1057 GaimContact *contact; |
| 1058 const char *ret; | |
| 1059 | |
| 1060 if(!buddy) | |
| 1061 return _("Unknown"); | |
| 5228 | 1062 |
| 6755 | 1063 contact = (GaimContact*)((GaimBlistNode*)buddy)->parent; |
| 6036 | 1064 |
| 6755 | 1065 if(contact && contact->alias) |
| 1066 return contact->alias; | |
| 1067 | |
| 1068 ret= gaim_get_buddy_alias_only(buddy); | |
| 1069 | |
| 1070 return ret ? ret : buddy->name; | |
| 5228 | 1071 } |
| 1072 | |
| 6744 | 1073 const char *gaim_blist_chat_get_name(GaimBlistChat *chat) |
| 1074 { | |
| 1075 if(chat->alias && *chat->alias) { | |
| 1076 return chat->alias; | |
| 1077 } else { | |
| 1078 struct proto_chat_entry *pce; | |
| 1079 GList *parts, *tmp; | |
| 1080 char *ret; | |
| 1081 | |
| 1082 parts = GAIM_PLUGIN_PROTOCOL_INFO(chat->account->gc->prpl)->chat_info(chat->account->gc); | |
| 1083 pce = parts->data; | |
| 1084 ret = g_hash_table_lookup(chat->components, pce->identifier); | |
| 1085 for(tmp = parts; tmp; tmp = tmp->next) | |
| 1086 g_free(tmp->data); | |
| 1087 g_list_free(parts); | |
| 1088 | |
| 1089 return ret; | |
| 1090 } | |
| 1091 } | |
| 1092 | |
| 6695 | 1093 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name) |
| 5228 | 1094 { |
| 6695 | 1095 GaimBuddy *buddy; |
| 5247 | 1096 struct _gaim_hbuddy hb; |
| 5758 | 1097 GaimBlistNode *group; |
| 5228 | 1098 |
| 1099 if (!gaimbuddylist) | |
| 1100 return NULL; | |
| 6245 | 1101 |
| 1102 if (!name) | |
|
5985
60d9cbfb6bf8
[gaim-migrate @ 6433]
Christian Hammond <chipx86@chipx86.com>
parents:
5947
diff
changeset
|
1103 return NULL; |
| 5228 | 1104 |
| 6245 | 1105 hb.name = normalize(name); |
| 1106 hb.account = account; | |
| 5247 | 1107 |
| 6245 | 1108 for(group = gaimbuddylist->root; group; group = group->next) { |
| 5758 | 1109 hb.group = group; |
| 5776 | 1110 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) |
| 5758 | 1111 return buddy; |
| 1112 } | |
| 6245 | 1113 |
| 5758 | 1114 return NULL; |
| 5228 | 1115 } |
| 1116 | |
| 6245 | 1117 GSList *gaim_find_buddies(GaimAccount *account, const char *name) |
| 1118 { | |
| 1119 struct buddy *buddy; | |
| 1120 struct _gaim_hbuddy hb; | |
| 1121 GaimBlistNode *group; | |
| 1122 GSList *ret = NULL; | |
| 1123 | |
| 1124 if (!gaimbuddylist) | |
| 1125 return NULL; | |
| 1126 | |
| 1127 if (!name) | |
| 1128 return NULL; | |
| 1129 | |
| 1130 hb.name = normalize(name); | |
| 1131 hb.account = account; | |
| 1132 | |
| 1133 for(group = gaimbuddylist->root; group; group = group->next) { | |
| 1134 hb.group = group; | |
| 1135 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) | |
| 1136 ret = g_slist_append(ret, buddy); | |
| 1137 } | |
| 1138 | |
| 1139 return ret; | |
| 1140 } | |
| 1141 | |
| 6695 | 1142 GaimGroup *gaim_find_group(const char *name) |
| 5228 | 1143 { |
| 1144 GaimBlistNode *node; | |
| 1145 if (!gaimbuddylist) | |
| 1146 return NULL; | |
| 1147 node = gaimbuddylist->root; | |
| 1148 while(node) { | |
| 6695 | 1149 if (!strcmp(((GaimGroup *)node)->name, name)) |
| 1150 return (GaimGroup *)node; | |
| 5228 | 1151 node = node->next; |
| 1152 } | |
| 1153 return NULL; | |
| 1154 } | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1155 |
| 6695 | 1156 GaimBlistChat * |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1157 gaim_blist_find_chat(GaimAccount *account, const char *name) |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1158 { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1159 char *chat_name; |
| 6695 | 1160 GaimBlistChat *chat; |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1161 GaimPlugin *prpl; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1162 GaimPluginProtocolInfo *prpl_info = NULL; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1163 struct proto_chat_entry *pce; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1164 GaimBlistNode *node, *group; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1165 GList *parts; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1166 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1167 g_return_val_if_fail(gaim_get_blist() != NULL, NULL); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1168 g_return_val_if_fail(name != NULL, NULL); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1169 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1170 for (group = gaimbuddylist->root; group != NULL; group = group->next) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1171 for (node = group->child; node != NULL; node = node->next) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1172 if (GAIM_BLIST_NODE_IS_CHAT(node)) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1173 |
| 6695 | 1174 chat = (GaimBlistChat*)node; |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1175 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1176 prpl = gaim_find_prpl(gaim_account_get_protocol(chat->account)); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1177 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1178 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1179 parts = prpl_info->chat_info( |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1180 gaim_account_get_connection(chat->account)); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1181 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1182 pce = parts->data; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1183 chat_name = g_hash_table_lookup(chat->components, |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1184 pce->identifier); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1185 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1186 if (chat->account == account && |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1187 name != NULL && !strcmp(chat_name, name)) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1188 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1189 return chat; |
|
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 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1192 } |
|
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 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1195 return NULL; |
|
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 |
| 6695 | 1198 GaimGroup * |
| 1199 gaim_blist_chat_get_group(GaimBlistChat *chat) | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1200 { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1201 g_return_val_if_fail(chat != NULL, NULL); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1202 |
| 6695 | 1203 return (GaimGroup *)(((GaimBlistNode *)chat)->parent); |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1204 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1205 |
| 6695 | 1206 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy) |
| 5228 | 1207 { |
| 1208 if (!buddy) | |
| 1209 return NULL; | |
|
6706
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1210 |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1211 if (((GaimBlistNode *)buddy)->parent == NULL) |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1212 return NULL; |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1213 |
| 6695 | 1214 return (GaimGroup *)(((GaimBlistNode*)buddy)->parent->parent); |
| 5228 | 1215 } |
| 1216 | |
| 6695 | 1217 GSList *gaim_group_get_accounts(GaimGroup *g) |
| 5228 | 1218 { |
| 1219 GSList *l = NULL; | |
| 6695 | 1220 GaimBlistNode *gnode, *cnode, *bnode; |
| 1221 | |
| 1222 gnode = (GaimBlistNode *)g; | |
| 5228 | 1223 |
| 6695 | 1224 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 1225 if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
| 1226 if(!g_slist_find(l, ((GaimBlistChat *)cnode)->account)) | |
| 1227 l = g_slist_append(l, ((GaimBlistChat *)cnode)->account); | |
| 1228 } else if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1229 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1230 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 1231 if(!g_slist_find(l, ((GaimBuddy *)bnode)->account)) | |
| 1232 l = g_slist_append(l, ((GaimBuddy *)bnode)->account); | |
| 1233 } | |
| 1234 } | |
| 1235 } | |
| 5228 | 1236 } |
| 6695 | 1237 |
| 5228 | 1238 return l; |
| 1239 } | |
| 1240 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1241 void gaim_blist_add_account(GaimAccount *account) |
| 5234 | 1242 { |
| 1243 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 6695 | 1244 GaimBlistNode *gnode, *cnode, *bnode; |
| 5234 | 1245 |
| 1246 if(!gaimbuddylist) | |
| 1247 return; | |
| 1248 | |
| 6695 | 1249 if(!ops) |
| 1250 return; | |
| 1251 | |
| 1252 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
| 1253 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 5234 | 1254 continue; |
| 6695 | 1255 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 1256 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1257 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1258 if(GAIM_BLIST_NODE_IS_BUDDY(bnode) && | |
| 1259 ((GaimBuddy*)bnode)->account == account) { | |
| 1260 ((GaimContact*)cnode)->currentsize++; | |
| 1261 if(((GaimContact*)cnode)->currentsize == 1) | |
| 1262 ((GaimGroup*)gnode)->currentsize++; | |
| 1263 if(GAIM_BUDDY_IS_ONLINE((GaimBuddy*)bnode)) { | |
| 1264 ((GaimContact*)cnode)->online++; | |
| 1265 if(((GaimContact*)cnode)->online == 1) | |
| 1266 ((GaimGroup*)gnode)->online++; | |
| 1267 } | |
| 1268 ops->update(gaimbuddylist, bnode); | |
| 1269 } | |
| 1270 } | |
| 1271 ops->update(gaimbuddylist, cnode); | |
| 1272 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode) && | |
| 1273 ((GaimBlistChat*)cnode)->account == account) { | |
| 1274 ((GaimGroup *)gnode)->online++; | |
| 1275 ((GaimGroup *)gnode)->currentsize++; | |
| 1276 ops->update(gaimbuddylist, cnode); | |
| 5234 | 1277 } |
| 1278 } | |
| 6695 | 1279 ops->update(gaimbuddylist, gnode); |
| 5234 | 1280 } |
| 1281 } | |
| 1282 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1283 void gaim_blist_remove_account(GaimAccount *account) |
| 5228 | 1284 { |
| 1285 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 6695 | 1286 GaimBlistNode *gnode, *cnode, *bnode; |
| 5234 | 1287 |
| 5228 | 1288 if (!gaimbuddylist) |
| 1289 return; | |
| 5234 | 1290 |
| 6695 | 1291 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
| 1292 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 5234 | 1293 continue; |
| 6695 | 1294 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 1295 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1296 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1297 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 1298 continue; | |
| 1299 if(account == ((GaimBuddy *)bnode)->account) { | |
| 1300 if(((GaimBuddy*)bnode)->present == GAIM_BUDDY_ONLINE || | |
| 1301 ((GaimBuddy*)bnode)->present == GAIM_BUDDY_SIGNING_ON) { | |
| 1302 ((GaimContact*)cnode)->online--; | |
| 1303 if(((GaimContact*)cnode)->online == 0) | |
| 1304 ((GaimGroup*)gnode)->online--; | |
| 1305 } | |
| 1306 ((GaimContact*)cnode)->currentsize--; | |
| 1307 if(((GaimContact*)cnode)->currentsize == 0) | |
| 1308 ((GaimGroup*)gnode)->currentsize--; | |
| 1309 | |
| 1310 ((GaimBuddy*)bnode)->present = GAIM_BUDDY_OFFLINE; | |
| 1311 | |
| 1312 if(ops) | |
| 1313 ops->remove(gaimbuddylist, bnode); | |
| 1314 } | |
| 5234 | 1315 } |
| 6695 | 1316 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode) && |
| 1317 ((GaimBlistChat*)cnode)->account == account) { | |
| 1318 ((GaimGroup*)gnode)->currentsize--; | |
| 1319 ((GaimGroup*)gnode)->online--; | |
| 1320 if(ops) | |
| 1321 ops->remove(gaimbuddylist, cnode); | |
| 5228 | 1322 } |
| 1323 } | |
| 1324 } | |
| 1325 } | |
| 1326 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1327 void parse_toc_buddy_list(GaimAccount *account, char *config) |
| 5228 | 1328 { |
| 1329 char *c; | |
| 1330 char current[256]; | |
| 1331 GList *bud = NULL; | |
| 1332 | |
| 1333 | |
| 1334 if (config != NULL) { | |
| 1335 | |
| 1336 /* skip "CONFIG:" (if it exists) */ | |
| 1337 c = strncmp(config + 6 /* sizeof(struct sflap_hdr) */ , "CONFIG:", strlen("CONFIG:")) ? | |
| 1338 strtok(config, "\n") : | |
| 1339 strtok(config + 6 /* sizeof(struct sflap_hdr) */ + strlen("CONFIG:"), "\n"); | |
| 1340 do { | |
| 1341 if (c == NULL) | |
| 1342 break; | |
| 1343 if (*c == 'g') { | |
| 1344 char *utf8 = NULL; | |
| 1345 utf8 = gaim_try_conv_to_utf8(c + 2); | |
| 1346 if (utf8 == NULL) { | |
| 1347 g_strlcpy(current, _("Invalid Groupname"), sizeof(current)); | |
| 1348 } else { | |
| 1349 g_strlcpy(current, utf8, sizeof(current)); | |
| 1350 g_free(utf8); | |
| 1351 } | |
| 1352 if (!gaim_find_group(current)) { | |
| 6695 | 1353 GaimGroup *g = gaim_group_new(current); |
| 5634 | 1354 gaim_blist_add_group(g, |
| 1355 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 5228 | 1356 } |
| 1357 } else if (*c == 'b') { /*&& !gaim_find_buddy(user, c + 2)) {*/ | |
| 1358 char nm[80], sw[388], *a, *utf8 = NULL; | |
| 1359 | |
| 1360 if ((a = strchr(c + 2, ':')) != NULL) { | |
| 1361 *a++ = '\0'; /* nul the : */ | |
| 1362 } | |
| 1363 | |
| 1364 g_strlcpy(nm, c + 2, sizeof(nm)); | |
| 1365 if (a) { | |
| 1366 utf8 = gaim_try_conv_to_utf8(a); | |
| 1367 if (utf8 == NULL) { | |
| 1368 gaim_debug(GAIM_DEBUG_ERROR, "toc blist", | |
| 1369 "Failed to convert alias for " | |
| 1370 "'%s' to UTF-8\n", nm); | |
| 1371 } | |
| 1372 } | |
| 1373 if (utf8 == NULL) { | |
| 1374 sw[0] = '\0'; | |
| 1375 } else { | |
| 1376 /* This can leave a partial sequence at the end, | |
| 1377 * but who cares? */ | |
| 1378 g_strlcpy(sw, utf8, sizeof(sw)); | |
| 1379 g_free(utf8); | |
| 1380 } | |
| 1381 | |
| 1382 if (!gaim_find_buddy(account, nm)) { | |
| 6695 | 1383 GaimBuddy *b = gaim_buddy_new(account, nm, sw); |
| 1384 GaimGroup *g = gaim_find_group(current); | |
| 1385 gaim_blist_add_buddy(b, NULL, g, | |
| 5634 | 1386 gaim_blist_get_last_child((GaimBlistNode*)g)); |
| 5228 | 1387 bud = g_list_append(bud, g_strdup(nm)); |
| 1388 } | |
| 1389 } else if (*c == 'p') { | |
|
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1390 gaim_privacy_permit_add(account, c + 2, TRUE); |
| 5228 | 1391 } else if (*c == 'd') { |
|
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1392 gaim_privacy_deny_add(account, c + 2, TRUE); |
| 5228 | 1393 } else if (!strncmp("toc", c, 3)) { |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1394 sscanf(c + strlen(c) - 1, "%d", &account->perm_deny); |
| 5228 | 1395 gaim_debug(GAIM_DEBUG_MISC, "toc blist", |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1396 "permdeny: %d\n", account->perm_deny); |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1397 if (account->perm_deny == 0) |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1398 account->perm_deny = 1; |
| 5228 | 1399 } else if (*c == 'm') { |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1400 sscanf(c + 2, "%d", &account->perm_deny); |
| 5228 | 1401 gaim_debug(GAIM_DEBUG_MISC, "toc blist", |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1402 "permdeny: %d\n", account->perm_deny); |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1403 if (account->perm_deny == 0) |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1404 account->perm_deny = 1; |
| 5228 | 1405 } |
| 1406 } while ((c = strtok(NULL, "\n"))); | |
| 1407 | |
| 1408 if(account->gc) { | |
| 1409 if(bud) { | |
| 1410 GList *node = bud; | |
| 1411 serv_add_buddies(account->gc, bud); | |
| 1412 while(node) { | |
| 1413 g_free(node->data); | |
| 1414 node = node->next; | |
| 1415 } | |
| 1416 } | |
| 1417 serv_set_permit_deny(account->gc); | |
| 1418 } | |
| 1419 g_list_free(bud); | |
| 1420 } | |
| 1421 } | |
| 1422 | |
| 1423 #if 0 | |
| 1424 /* translate an AIM 3 buddylist (*.lst) to a Gaim buddylist */ | |
| 1425 static GString *translate_lst(FILE *src_fp) | |
| 1426 { | |
| 1427 char line[BUF_LEN], *line2; | |
| 1428 char *name; | |
| 1429 int i; | |
| 1430 | |
| 1431 GString *dest = g_string_new("m 1\n"); | |
| 1432 | |
| 1433 while (fgets(line, BUF_LEN, src_fp)) { | |
| 1434 line2 = g_strchug(line); | |
| 1435 if (strstr(line2, "group") == line2) { | |
| 1436 name = strpbrk(line2, " \t\n\r\f") + 1; | |
| 1437 dest = g_string_append(dest, "g "); | |
| 1438 for (i = 0; i < strcspn(name, "\n\r"); i++) | |
| 1439 if (name[i] != '\"') | |
| 1440 dest = g_string_append_c(dest, name[i]); | |
| 1441 dest = g_string_append_c(dest, '\n'); | |
| 1442 } | |
| 1443 if (strstr(line2, "buddy") == line2) { | |
| 1444 name = strpbrk(line2, " \t\n\r\f") + 1; | |
| 1445 dest = g_string_append(dest, "b "); | |
| 1446 for (i = 0; i < strcspn(name, "\n\r"); i++) | |
| 1447 if (name[i] != '\"') | |
| 1448 dest = g_string_append_c(dest, name[i]); | |
| 1449 dest = g_string_append_c(dest, '\n'); | |
| 1450 } | |
| 1451 } | |
| 1452 | |
| 1453 return dest; | |
| 1454 } | |
| 1455 | |
| 1456 | |
| 1457 /* translate an AIM 4 buddylist (*.blt) to Gaim format */ | |
| 1458 static GString *translate_blt(FILE *src_fp) | |
| 1459 { | |
| 1460 int i; | |
| 1461 char line[BUF_LEN]; | |
| 1462 char *buddy; | |
| 1463 | |
| 1464 GString *dest = g_string_new("m 1\n"); | |
| 1465 | |
| 1466 while (strstr(fgets(line, BUF_LEN, src_fp), "Buddy") == NULL); | |
| 1467 while (strstr(fgets(line, BUF_LEN, src_fp), "list") == NULL); | |
| 1468 | |
| 1469 while (1) { | |
| 1470 fgets(line, BUF_LEN, src_fp); g_strchomp(line); | |
| 1471 if (strchr(line, '}') != NULL) | |
| 1472 break; | |
| 1473 | |
| 1474 if (strchr(line, '{') != NULL) { | |
| 1475 /* Syntax starting with "<group> {" */ | |
| 1476 | |
| 1477 dest = g_string_append(dest, "g "); | |
| 1478 buddy = g_strchug(strtok(line, "{")); | |
| 1479 for (i = 0; i < strlen(buddy); i++) | |
| 1480 if (buddy[i] != '\"') | |
| 1481 dest = g_string_append_c(dest, buddy[i]); | |
| 1482 dest = g_string_append_c(dest, '\n'); | |
| 1483 while (strchr(fgets(line, BUF_LEN, src_fp), '}') == NULL) { | |
| 1484 gboolean pounce = FALSE; | |
| 1485 char *e; | |
| 1486 g_strchomp(line); | |
| 1487 buddy = g_strchug(line); | |
| 1488 gaim_debug(GAIM_DEBUG_MISC, "AIM 4 blt import", | |
| 1489 "buddy: \"%s\"\n", buddy); | |
| 1490 dest = g_string_append(dest, "b "); | |
| 1491 if (strchr(buddy, '{') != NULL) { | |
| 1492 /* buddy pounce, etc */ | |
| 1493 char *pos = strchr(buddy, '{') - 1; | |
| 1494 *pos = 0; | |
| 1495 pounce = TRUE; | |
| 1496 } | |
| 1497 if ((e = strchr(buddy, '\"')) != NULL) { | |
| 1498 *e = '\0'; | |
| 1499 buddy++; | |
| 1500 } | |
| 1501 dest = g_string_append(dest, buddy); | |
| 1502 dest = g_string_append_c(dest, '\n'); | |
| 1503 if (pounce) | |
| 1504 do | |
| 1505 fgets(line, BUF_LEN, src_fp); | |
| 1506 while (!strchr(line, '}')); | |
| 1507 } | |
| 1508 } else { | |
| 1509 | |
| 1510 /* Syntax "group buddy buddy ..." */ | |
| 1511 buddy = g_strchug(strtok(line, " \n")); | |
| 1512 dest = g_string_append(dest, "g "); | |
| 1513 if (strchr(buddy, '\"') != NULL) { | |
| 1514 dest = g_string_append(dest, &buddy[1]); | |
| 1515 dest = g_string_append_c(dest, ' '); | |
| 1516 buddy = g_strchug(strtok(NULL, " \n")); | |
| 1517 while (strchr(buddy, '\"') == NULL) { | |
| 1518 dest = g_string_append(dest, buddy); | |
| 1519 dest = g_string_append_c(dest, ' '); | |
| 1520 buddy = g_strchug(strtok(NULL, " \n")); | |
| 1521 } | |
| 1522 buddy[strlen(buddy) - 1] = '\0'; | |
| 1523 dest = g_string_append(dest, buddy); | |
| 1524 } else { | |
| 1525 dest = g_string_append(dest, buddy); | |
| 1526 } | |
| 1527 dest = g_string_append_c(dest, '\n'); | |
| 1528 while ((buddy = g_strchug(strtok(NULL, " \n"))) != NULL) { | |
| 1529 dest = g_string_append(dest, "b "); | |
| 1530 if (strchr(buddy, '\"') != NULL) { | |
| 1531 dest = g_string_append(dest, &buddy[1]); | |
| 1532 dest = g_string_append_c(dest, ' '); | |
| 1533 buddy = g_strchug(strtok(NULL, " \n")); | |
| 1534 while (strchr(buddy, '\"') == NULL) { | |
| 1535 dest = g_string_append(dest, buddy); | |
| 1536 dest = g_string_append_c(dest, ' '); | |
| 1537 buddy = g_strchug(strtok(NULL, " \n")); | |
| 1538 } | |
| 1539 buddy[strlen(buddy) - 1] = '\0'; | |
| 1540 dest = g_string_append(dest, buddy); | |
| 1541 } else { | |
| 1542 dest = g_string_append(dest, buddy); | |
| 1543 } | |
| 1544 dest = g_string_append_c(dest, '\n'); | |
| 1545 } | |
| 1546 } | |
| 1547 } | |
| 1548 | |
| 1549 return dest; | |
| 1550 } | |
| 1551 | |
| 1552 static GString *translate_gnomeicu(FILE *src_fp) | |
| 1553 { | |
| 1554 char line[BUF_LEN]; | |
| 1555 GString *dest = g_string_new("m 1\ng Buddies\n"); | |
| 1556 | |
| 1557 while (strstr(fgets(line, BUF_LEN, src_fp), "NewContacts") == NULL); | |
| 1558 | |
| 1559 while (fgets(line, BUF_LEN, src_fp)) { | |
| 1560 char *eq; | |
| 1561 g_strchomp(line); | |
| 1562 if (line[0] == '\n' || line[0] == '[') | |
| 1563 break; | |
| 1564 eq = strchr(line, '='); | |
| 1565 if (!eq) | |
| 1566 break; | |
| 1567 *eq = ':'; | |
| 1568 eq = strchr(eq, ','); | |
| 1569 if (eq) | |
| 1570 *eq = '\0'; | |
| 1571 dest = g_string_append(dest, "b "); | |
| 1572 dest = g_string_append(dest, line); | |
| 1573 dest = g_string_append_c(dest, '\n'); | |
| 1574 } | |
| 1575 | |
| 1576 return dest; | |
| 1577 } | |
| 1578 #endif | |
| 1579 | |
| 1580 static gchar *get_screenname_filename(const char *name) | |
| 1581 { | |
| 1582 gchar **split; | |
| 1583 gchar *good; | |
| 1584 gchar *ret; | |
| 1585 | |
| 1586 split = g_strsplit(name, G_DIR_SEPARATOR_S, -1); | |
| 1587 good = g_strjoinv(NULL, split); | |
| 1588 g_strfreev(split); | |
| 1589 | |
| 1590 ret = g_utf8_strup(good, -1); | |
| 1591 | |
| 1592 g_free(good); | |
| 1593 | |
| 1594 return ret; | |
| 1595 } | |
| 1596 | |
| 1597 static gboolean gaim_blist_read(const char *filename); | |
| 1598 | |
| 1599 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1600 static void do_import(GaimAccount *account, const char *filename) |
| 5228 | 1601 { |
| 1602 GString *buf = NULL; | |
| 1603 char first[64]; | |
| 1604 char path[PATHSIZE]; | |
| 1605 int len; | |
| 1606 FILE *f; | |
| 1607 struct stat st; | |
| 1608 | |
| 1609 if (filename) { | |
| 1610 g_snprintf(path, sizeof(path), "%s", filename); | |
| 1611 } else { | |
| 1612 char *g_screenname = get_screenname_filename(account->username); | |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1613 const char *username; |
| 5228 | 1614 char *file = gaim_user_dir(); |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1615 GaimProtocol prpl_num; |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1616 int protocol; |
| 6695 | 1617 |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1618 prpl_num = gaim_account_get_protocol(account); |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1619 |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1620 protocol = prpl_num; |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1621 |
|
6450
e7b87c8e8c0a
[gaim-migrate @ 6959]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
1622 /* TODO Somehow move this checking into prpls */ |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1623 if (prpl_num == GAIM_PROTO_OSCAR) { |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1624 if ((username = gaim_account_get_username(account)) != NULL) { |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1625 protocol = (isalpha(*username) |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1626 ? GAIM_PROTO_TOC : GAIM_PROTO_ICQ); |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1627 } |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
1628 } |
| 5228 | 1629 |
| 1630 if (file != (char *)NULL) { | |
| 5435 | 1631 snprintf(path, PATHSIZE, "%s" G_DIR_SEPARATOR_S "%s.%d.blist", file, g_screenname, protocol); |
| 5228 | 1632 g_free(g_screenname); |
| 1633 } else { | |
| 1634 g_free(g_screenname); | |
| 1635 return; | |
| 1636 } | |
| 1637 } | |
| 1638 | |
| 1639 if (stat(path, &st)) { | |
| 1640 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Unable to stat %s.\n", | |
| 1641 path); | |
| 1642 return; | |
| 1643 } | |
| 1644 | |
| 1645 if (!(f = fopen(path, "r"))) { | |
| 1646 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Unable to open %s.\n", | |
| 1647 path); | |
| 1648 return; | |
| 1649 } | |
| 1650 | |
| 1651 fgets(first, 64, f); | |
| 1652 | |
| 1653 if ((first[0] == '\n') || (first[0] == '\r' && first[1] == '\n')) | |
| 1654 fgets(first, 64, f); | |
| 1655 | |
| 1656 #if 0 | |
| 1657 if (!g_strncasecmp(first, "<xml", strlen("<xml"))) { | |
| 1658 /* new gaim XML buddy list */ | |
| 1659 gaim_blist_read(path); | |
| 1660 | |
| 1661 /* We really don't need to bother doing stuf like translating AIM 3 buddy lists anymore */ | |
| 1662 | |
| 1663 } else if (!g_strncasecmp(first, "Config {", strlen("Config {"))) { | |
| 1664 /* AIM 4 buddy list */ | |
| 1665 gaim_debug(GAIM_DEBUG_MISC, "blist import", "aim 4\n"); | |
| 1666 rewind(f); | |
| 1667 buf = translate_blt(f); | |
| 1668 } else if (strstr(first, "group") != NULL) { | |
| 1669 /* AIM 3 buddy list */ | |
| 1670 gaim_debug(GAIM_DEBUG_MISC, "blist import", "aim 3\n"); | |
| 1671 rewind(f); | |
| 1672 buf = translate_lst(f); | |
| 1673 } else if (!g_strncasecmp(first, "[User]", strlen("[User]"))) { | |
| 1674 /* GnomeICU (hopefully) */ | |
| 1675 gaim_debug(GAIM_DEBUG_MISC, "blist import", "gnomeicu\n"); | |
| 1676 rewind(f); | |
| 1677 buf = translate_gnomeicu(f); | |
| 1678 | |
| 1679 } else | |
| 1680 #endif | |
| 1681 if (first[0] == 'm') { | |
| 1682 /* Gaim buddy list - no translation */ | |
| 1683 char buf2[BUF_LONG * 2]; | |
| 1684 buf = g_string_new(""); | |
| 1685 rewind(f); | |
| 1686 while (1) { | |
| 1687 len = fread(buf2, 1, BUF_LONG * 2 - 1, f); | |
| 1688 if (len <= 0) | |
| 1689 break; | |
| 1690 buf2[len] = '\0'; | |
| 1691 buf = g_string_append(buf, buf2); | |
| 1692 if (len != BUF_LONG * 2 - 1) | |
| 1693 break; | |
| 1694 } | |
| 1695 } | |
| 1696 | |
| 1697 fclose(f); | |
| 1698 | |
| 1699 if (buf) { | |
| 1700 buf = g_string_prepend(buf, "toc_set_config {"); | |
| 1701 buf = g_string_append(buf, "}\n"); | |
| 1702 parse_toc_buddy_list(account, buf->str); | |
| 1703 g_string_free(buf, TRUE); | |
| 1704 } | |
| 1705 } | |
| 1706 | |
| 6695 | 1707 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account) { |
| 1708 GaimBlistNode *cnode, *bnode; | |
| 1709 for(cnode = ((GaimBlistNode *)g)->child; cnode; cnode = cnode->next) { | |
| 1710 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1711 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1712 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 1713 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
| 1714 if((!account && gaim_account_is_connected(buddy->account)) | |
| 1715 || buddy->account == account) | |
| 1716 return TRUE; | |
| 1717 } | |
| 1718 } | |
| 1719 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
| 1720 GaimBlistChat *chat = (GaimBlistChat *)cnode; | |
| 1721 if((!account && gaim_account_is_connected(chat->account)) | |
| 1722 || chat->account == account) | |
| 1723 return TRUE; | |
| 1724 } | |
| 5228 | 1725 } |
| 1726 return FALSE; | |
| 1727 } | |
| 1728 | |
| 1729 static gboolean blist_safe_to_write = FALSE; | |
| 1730 | |
| 6695 | 1731 GaimGroup *blist_parser_group = NULL; |
| 1732 GaimContact *blist_parser_contact = NULL; | |
| 5228 | 1733 static char *blist_parser_group_name = NULL; |
| 1734 static char *blist_parser_account_name = NULL; | |
| 1735 static int blist_parser_account_protocol = 0; | |
| 5234 | 1736 static char *blist_parser_chat_alias = NULL; |
| 1737 static char *blist_parser_component_name = NULL; | |
| 1738 static char *blist_parser_component_value = NULL; | |
| 5228 | 1739 static char *blist_parser_buddy_name = NULL; |
| 1740 static char *blist_parser_buddy_alias = NULL; | |
| 1741 static char *blist_parser_setting_name = NULL; | |
| 1742 static char *blist_parser_setting_value = NULL; | |
| 1743 static GHashTable *blist_parser_buddy_settings = NULL; | |
| 5906 | 1744 static GHashTable *blist_parser_chat_settings = NULL; |
| 5228 | 1745 static GHashTable *blist_parser_group_settings = NULL; |
| 5234 | 1746 static GHashTable *blist_parser_chat_components = NULL; |
| 5228 | 1747 static int blist_parser_privacy_mode = 0; |
| 1748 static GList *tag_stack = NULL; | |
| 1749 enum { | |
| 1750 BLIST_TAG_GAIM, | |
| 1751 BLIST_TAG_BLIST, | |
| 1752 BLIST_TAG_GROUP, | |
| 5234 | 1753 BLIST_TAG_CHAT, |
| 1754 BLIST_TAG_COMPONENT, | |
| 6695 | 1755 BLIST_TAG_CONTACT, |
| 5228 | 1756 BLIST_TAG_BUDDY, |
| 1757 BLIST_TAG_NAME, | |
| 1758 BLIST_TAG_ALIAS, | |
| 1759 BLIST_TAG_SETTING, | |
| 1760 BLIST_TAG_PRIVACY, | |
| 1761 BLIST_TAG_ACCOUNT, | |
| 1762 BLIST_TAG_PERMIT, | |
| 1763 BLIST_TAG_BLOCK, | |
| 1764 BLIST_TAG_IGNORE | |
| 1765 }; | |
| 1766 static gboolean blist_parser_error_occurred = FALSE; | |
| 1767 | |
| 1768 static void blist_start_element_handler (GMarkupParseContext *context, | |
| 1769 const gchar *element_name, | |
| 1770 const gchar **attribute_names, | |
| 1771 const gchar **attribute_values, | |
| 1772 gpointer user_data, | |
| 1773 GError **error) { | |
| 1774 int i; | |
| 1775 | |
| 1776 if(!strcmp(element_name, "gaim")) { | |
| 1777 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_GAIM)); | |
| 1778 } else if(!strcmp(element_name, "blist")) { | |
| 1779 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BLIST)); | |
| 1780 } else if(!strcmp(element_name, "group")) { | |
| 1781 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_GROUP)); | |
| 1782 for(i=0; attribute_names[i]; i++) { | |
| 1783 if(!strcmp(attribute_names[i], "name")) { | |
| 1784 g_free(blist_parser_group_name); | |
| 1785 blist_parser_group_name = g_strdup(attribute_values[i]); | |
| 1786 } | |
| 1787 } | |
| 1788 if(blist_parser_group_name) { | |
| 6695 | 1789 blist_parser_group = gaim_group_new(blist_parser_group_name); |
| 1790 gaim_blist_add_group(blist_parser_group, | |
| 5634 | 1791 gaim_blist_get_last_sibling(gaimbuddylist->root)); |
| 5228 | 1792 } |
| 6695 | 1793 } else if(!strcmp(element_name, "contact")) { |
| 6755 | 1794 char *alias = NULL; |
| 6695 | 1795 tag_stack = g_list_prepend(tag_stack, |
| 1796 GINT_TO_POINTER(BLIST_TAG_CONTACT)); | |
| 1797 | |
| 6755 | 1798 for(i=0; attribute_names[i]; i++) { |
| 1799 if(!strcmp(attribute_names[i], "alias")) { | |
| 1800 g_free(alias); | |
| 1801 alias = g_strdup(attribute_values[i]); | |
| 1802 } | |
| 1803 } | |
| 1804 | |
| 6695 | 1805 blist_parser_contact = gaim_contact_new(); |
| 1806 gaim_blist_add_contact(blist_parser_contact, blist_parser_group, | |
| 1807 gaim_blist_get_last_sibling(((GaimBlistNode*)blist_parser_group)->child)); | |
| 6755 | 1808 |
| 1809 if(alias) { | |
| 1810 gaim_contact_set_alias(blist_parser_contact, alias); | |
| 1811 g_free(alias); | |
| 1812 } | |
| 5234 | 1813 } else if(!strcmp(element_name, "chat")) { |
| 1814 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_CHAT)); | |
| 1815 for(i=0; attribute_names[i]; i++) { | |
| 1816 if(!strcmp(attribute_names[i], "account")) { | |
| 1817 g_free(blist_parser_account_name); | |
| 1818 blist_parser_account_name = g_strdup(attribute_values[i]); | |
| 1819 } else if(!strcmp(attribute_names[i], "protocol")) { | |
| 1820 blist_parser_account_protocol = atoi(attribute_values[i]); | |
| 1821 } | |
| 1822 } | |
| 5228 | 1823 } else if(!strcmp(element_name, "buddy")) { |
| 1824 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BUDDY)); | |
| 1825 for(i=0; attribute_names[i]; i++) { | |
| 1826 if(!strcmp(attribute_names[i], "account")) { | |
| 1827 g_free(blist_parser_account_name); | |
| 1828 blist_parser_account_name = g_strdup(attribute_values[i]); | |
| 1829 } else if(!strcmp(attribute_names[i], "protocol")) { | |
| 1830 blist_parser_account_protocol = atoi(attribute_values[i]); | |
| 1831 } | |
| 1832 } | |
| 1833 } else if(!strcmp(element_name, "name")) { | |
| 1834 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_NAME)); | |
| 1835 } else if(!strcmp(element_name, "alias")) { | |
| 1836 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_ALIAS)); | |
| 1837 } else if(!strcmp(element_name, "setting")) { | |
| 1838 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_SETTING)); | |
| 1839 for(i=0; attribute_names[i]; i++) { | |
| 1840 if(!strcmp(attribute_names[i], "name")) { | |
| 1841 g_free(blist_parser_setting_name); | |
| 1842 blist_parser_setting_name = g_strdup(attribute_values[i]); | |
| 1843 } | |
| 1844 } | |
| 5234 | 1845 } else if(!strcmp(element_name, "component")) { |
| 1846 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_COMPONENT)); | |
| 1847 for(i=0; attribute_names[i]; i++) { | |
| 1848 if(!strcmp(attribute_names[i], "name")) { | |
| 1849 g_free(blist_parser_component_name); | |
| 1850 blist_parser_component_name = g_strdup(attribute_values[i]); | |
| 1851 } | |
| 1852 } | |
| 1853 | |
| 5228 | 1854 } else if(!strcmp(element_name, "privacy")) { |
| 1855 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PRIVACY)); | |
| 1856 } else if(!strcmp(element_name, "account")) { | |
| 1857 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_ACCOUNT)); | |
| 1858 for(i=0; attribute_names[i]; i++) { | |
| 1859 if(!strcmp(attribute_names[i], "protocol")) | |
| 1860 blist_parser_account_protocol = atoi(attribute_values[i]); | |
| 1861 else if(!strcmp(attribute_names[i], "mode")) | |
| 1862 blist_parser_privacy_mode = atoi(attribute_values[i]); | |
| 1863 else if(!strcmp(attribute_names[i], "name")) { | |
| 1864 g_free(blist_parser_account_name); | |
| 1865 blist_parser_account_name = g_strdup(attribute_values[i]); | |
| 1866 } | |
| 1867 } | |
| 1868 } else if(!strcmp(element_name, "permit")) { | |
| 1869 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_PERMIT)); | |
| 1870 } else if(!strcmp(element_name, "block")) { | |
| 1871 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_BLOCK)); | |
| 1872 } else if(!strcmp(element_name, "ignore")) { | |
| 1873 tag_stack = g_list_prepend(tag_stack, GINT_TO_POINTER(BLIST_TAG_IGNORE)); | |
| 1874 } | |
| 1875 } | |
| 1876 | |
| 1877 static void blist_end_element_handler(GMarkupParseContext *context, | |
| 1878 const gchar *element_name, gpointer user_data, GError **error) { | |
| 1879 if(!strcmp(element_name, "gaim")) { | |
| 1880 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1881 } else if(!strcmp(element_name, "blist")) { | |
| 1882 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1883 } else if(!strcmp(element_name, "group")) { | |
| 1884 if(blist_parser_group_settings) { | |
| 6695 | 1885 GaimGroup *g = gaim_find_group(blist_parser_group_name); |
| 5228 | 1886 g_hash_table_destroy(g->settings); |
| 1887 g->settings = blist_parser_group_settings; | |
| 1888 } | |
| 1889 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1890 blist_parser_group_settings = NULL; | |
| 6695 | 1891 blist_parser_group = NULL; |
| 1892 blist_parser_group_name = NULL; | |
| 5234 | 1893 } else if(!strcmp(element_name, "chat")) { |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1894 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5234 | 1895 blist_parser_account_protocol); |
| 5237 | 1896 if(account) { |
| 6695 | 1897 GaimBlistChat *chat = gaim_blist_chat_new(account, |
| 1898 blist_parser_chat_alias, blist_parser_chat_components); | |
| 1899 GaimGroup *g = gaim_find_group(blist_parser_group_name); | |
| 5634 | 1900 gaim_blist_add_chat(chat,g, |
| 1901 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
| 5906 | 1902 if(blist_parser_chat_settings) { |
| 1903 g_hash_table_destroy(chat->settings); | |
| 1904 chat->settings = blist_parser_chat_settings; | |
| 1905 } | |
| 5234 | 1906 } |
| 1907 g_free(blist_parser_chat_alias); | |
| 1908 blist_parser_chat_alias = NULL; | |
| 1909 g_free(blist_parser_account_name); | |
| 1910 blist_parser_account_name = NULL; | |
| 1911 blist_parser_chat_components = NULL; | |
| 5906 | 1912 blist_parser_chat_settings = NULL; |
| 5234 | 1913 tag_stack = g_list_delete_link(tag_stack, tag_stack); |
| 6695 | 1914 } else if(!strcmp(element_name, "contact")) { |
| 1915 if(blist_parser_contact && !blist_parser_contact->node.child) | |
| 1916 gaim_blist_remove_contact(blist_parser_contact); | |
| 1917 blist_parser_contact = NULL; | |
| 5228 | 1918 tag_stack = g_list_delete_link(tag_stack, tag_stack); |
| 1919 } else if(!strcmp(element_name, "buddy")) { | |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1920 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5228 | 1921 blist_parser_account_protocol); |
| 1922 if(account) { | |
| 6695 | 1923 GaimBuddy *b = gaim_buddy_new(account, blist_parser_buddy_name, blist_parser_buddy_alias); |
| 1924 gaim_blist_add_buddy(b,blist_parser_contact, blist_parser_group, | |
| 1925 gaim_blist_get_last_child((GaimBlistNode*)blist_parser_contact)); | |
| 5228 | 1926 if(blist_parser_buddy_settings) { |
| 1927 g_hash_table_destroy(b->settings); | |
| 1928 b->settings = blist_parser_buddy_settings; | |
| 1929 } | |
| 1930 } | |
| 1931 g_free(blist_parser_buddy_name); | |
| 1932 blist_parser_buddy_name = NULL; | |
| 1933 g_free(blist_parser_buddy_alias); | |
| 1934 blist_parser_buddy_alias = NULL; | |
| 1935 g_free(blist_parser_account_name); | |
| 1936 blist_parser_account_name = NULL; | |
| 1937 blist_parser_buddy_settings = NULL; | |
| 1938 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1939 } else if(!strcmp(element_name, "name")) { | |
| 1940 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1941 } else if(!strcmp(element_name, "alias")) { | |
| 1942 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 5234 | 1943 } else if(!strcmp(element_name, "component")) { |
| 1944 if(!blist_parser_chat_components) | |
| 1945 blist_parser_chat_components = g_hash_table_new_full(g_str_hash, | |
| 1946 g_str_equal, g_free, g_free); | |
| 1947 if(blist_parser_component_name && blist_parser_component_value) { | |
| 1948 g_hash_table_replace(blist_parser_chat_components, | |
| 1949 g_strdup(blist_parser_component_name), | |
| 1950 g_strdup(blist_parser_component_value)); | |
| 1951 } | |
| 1952 g_free(blist_parser_component_name); | |
| 1953 g_free(blist_parser_component_value); | |
| 1954 blist_parser_component_name = NULL; | |
| 1955 blist_parser_component_value = NULL; | |
| 1956 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 5228 | 1957 } else if(!strcmp(element_name, "setting")) { |
| 1958 if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_BUDDY) { | |
| 1959 if(!blist_parser_buddy_settings) | |
| 1960 blist_parser_buddy_settings = g_hash_table_new_full(g_str_hash, | |
| 1961 g_str_equal, g_free, g_free); | |
| 1962 if(blist_parser_setting_name && blist_parser_setting_value) { | |
| 1963 g_hash_table_replace(blist_parser_buddy_settings, | |
| 1964 g_strdup(blist_parser_setting_name), | |
| 1965 g_strdup(blist_parser_setting_value)); | |
| 1966 } | |
| 5906 | 1967 } else if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_CHAT) { |
| 1968 if(!blist_parser_chat_settings) | |
| 1969 blist_parser_chat_settings = g_hash_table_new_full(g_str_hash, | |
| 1970 g_str_equal, g_free, g_free); | |
| 1971 if(blist_parser_setting_name && blist_parser_setting_value) { | |
| 6307 | 1972 g_hash_table_replace(blist_parser_chat_settings, |
| 5906 | 1973 g_strdup(blist_parser_setting_name), |
| 1974 g_strdup(blist_parser_setting_value)); | |
| 1975 } | |
| 5228 | 1976 } else if(GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_GROUP) { |
| 1977 if(!blist_parser_group_settings) | |
| 1978 blist_parser_group_settings = g_hash_table_new_full(g_str_hash, | |
| 1979 g_str_equal, g_free, g_free); | |
| 1980 if(blist_parser_setting_name && blist_parser_setting_value) { | |
| 1981 g_hash_table_replace(blist_parser_group_settings, | |
| 1982 g_strdup(blist_parser_setting_name), | |
| 1983 g_strdup(blist_parser_setting_value)); | |
| 1984 } | |
| 1985 } | |
| 1986 g_free(blist_parser_setting_name); | |
| 1987 g_free(blist_parser_setting_value); | |
| 1988 blist_parser_setting_name = NULL; | |
| 1989 blist_parser_setting_value = NULL; | |
| 1990 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1991 } else if(!strcmp(element_name, "privacy")) { | |
| 1992 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 1993 } else if(!strcmp(element_name, "account")) { | |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1994 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5228 | 1995 blist_parser_account_protocol); |
| 1996 if(account) { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1997 account->perm_deny = blist_parser_privacy_mode; |
| 5228 | 1998 } |
| 1999 g_free(blist_parser_account_name); | |
| 2000 blist_parser_account_name = NULL; | |
| 2001 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 2002 } else if(!strcmp(element_name, "permit")) { | |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2003 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5228 | 2004 blist_parser_account_protocol); |
| 2005 if(account) { | |
|
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
2006 gaim_privacy_permit_add(account, blist_parser_buddy_name, TRUE); |
| 5228 | 2007 } |
| 2008 g_free(blist_parser_buddy_name); | |
| 2009 blist_parser_buddy_name = NULL; | |
| 2010 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 2011 } else if(!strcmp(element_name, "block")) { | |
|
5874
964e4f94fc56
[gaim-migrate @ 6306]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2012 GaimAccount *account = gaim_accounts_find(blist_parser_account_name, |
| 5228 | 2013 blist_parser_account_protocol); |
| 2014 if(account) { | |
|
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
2015 gaim_privacy_deny_add(account, blist_parser_buddy_name, TRUE); |
| 5228 | 2016 } |
| 2017 g_free(blist_parser_buddy_name); | |
| 2018 blist_parser_buddy_name = NULL; | |
| 2019 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 2020 } else if(!strcmp(element_name, "ignore")) { | |
| 2021 /* we'll apparently do something with this later */ | |
| 2022 tag_stack = g_list_delete_link(tag_stack, tag_stack); | |
| 2023 } | |
| 2024 } | |
| 2025 | |
| 2026 static void blist_text_handler(GMarkupParseContext *context, const gchar *text, | |
| 2027 gsize text_len, gpointer user_data, GError **error) { | |
| 2028 switch(GPOINTER_TO_INT(tag_stack->data)) { | |
| 2029 case BLIST_TAG_NAME: | |
| 2030 blist_parser_buddy_name = g_strndup(text, text_len); | |
| 2031 break; | |
| 2032 case BLIST_TAG_ALIAS: | |
| 5234 | 2033 if(tag_stack->next && |
| 2034 GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_BUDDY) | |
| 2035 blist_parser_buddy_alias = g_strndup(text, text_len); | |
| 2036 else if(tag_stack->next && | |
| 2037 GPOINTER_TO_INT(tag_stack->next->data) == BLIST_TAG_CHAT) | |
| 2038 blist_parser_chat_alias = g_strndup(text, text_len); | |
| 5228 | 2039 break; |
| 2040 case BLIST_TAG_PERMIT: | |
| 2041 case BLIST_TAG_BLOCK: | |
| 2042 case BLIST_TAG_IGNORE: | |
| 2043 blist_parser_buddy_name = g_strndup(text, text_len); | |
| 2044 break; | |
| 5234 | 2045 case BLIST_TAG_COMPONENT: |
| 2046 blist_parser_component_value = g_strndup(text, text_len); | |
| 2047 break; | |
| 5228 | 2048 case BLIST_TAG_SETTING: |
| 2049 blist_parser_setting_value = g_strndup(text, text_len); | |
| 2050 break; | |
| 2051 default: | |
| 2052 break; | |
| 2053 } | |
| 2054 } | |
| 2055 | |
| 2056 static void blist_error_handler(GMarkupParseContext *context, GError *error, | |
| 2057 gpointer user_data) { | |
| 2058 blist_parser_error_occurred = TRUE; | |
| 2059 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
| 2060 "Error parsing blist.xml: %s\n", error->message); | |
| 2061 } | |
| 2062 | |
| 2063 static GMarkupParser blist_parser = { | |
| 2064 blist_start_element_handler, | |
| 2065 blist_end_element_handler, | |
| 2066 blist_text_handler, | |
| 2067 NULL, | |
| 2068 blist_error_handler | |
| 2069 }; | |
| 2070 | |
| 2071 static gboolean gaim_blist_read(const char *filename) { | |
| 2072 gchar *contents = NULL; | |
| 2073 gsize length; | |
| 2074 GMarkupParseContext *context; | |
| 2075 GError *error = NULL; | |
| 2076 | |
| 2077 gaim_debug(GAIM_DEBUG_INFO, "blist import", | |
| 2078 "Reading %s\n", filename); | |
| 2079 if(!g_file_get_contents(filename, &contents, &length, &error)) { | |
| 2080 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
| 2081 "Error reading blist: %s\n", error->message); | |
| 2082 g_error_free(error); | |
| 2083 return FALSE; | |
| 2084 } | |
| 2085 | |
| 2086 context = g_markup_parse_context_new(&blist_parser, 0, NULL, NULL); | |
| 2087 | |
| 2088 if(!g_markup_parse_context_parse(context, contents, length, NULL)) { | |
| 2089 g_markup_parse_context_free(context); | |
| 2090 g_free(contents); | |
| 2091 return FALSE; | |
| 2092 } | |
| 2093 | |
| 2094 if(!g_markup_parse_context_end_parse(context, NULL)) { | |
| 2095 gaim_debug(GAIM_DEBUG_ERROR, "blist import", | |
| 2096 "Error parsing %s\n", filename); | |
| 2097 g_markup_parse_context_free(context); | |
| 2098 g_free(contents); | |
| 2099 return FALSE; | |
| 2100 } | |
| 2101 | |
| 2102 g_markup_parse_context_free(context); | |
| 2103 g_free(contents); | |
| 2104 | |
| 2105 if(blist_parser_error_occurred) | |
| 2106 return FALSE; | |
| 2107 | |
| 2108 gaim_debug(GAIM_DEBUG_INFO, "blist import", "Finished reading %s\n", | |
| 2109 filename); | |
| 2110 | |
| 2111 return TRUE; | |
| 2112 } | |
| 2113 | |
| 2114 void gaim_blist_load() { | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2115 GList *accts; |
| 5228 | 2116 char *user_dir = gaim_user_dir(); |
| 2117 char *filename; | |
| 2118 char *msg; | |
| 2119 | |
| 2120 blist_safe_to_write = TRUE; | |
| 2121 | |
| 2122 if(!user_dir) | |
| 2123 return; | |
| 2124 | |
| 2125 filename = g_build_filename(user_dir, "blist.xml", NULL); | |
| 2126 | |
| 2127 if(g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
| 2128 if(!gaim_blist_read(filename)) { | |
| 2129 msg = g_strdup_printf(_("An error was encountered parsing your " | |
| 2130 "buddy list. It has not been loaded.")); | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2131 gaim_notify_error(NULL, NULL, _("Buddy List Error"), msg); |
| 5228 | 2132 g_free(msg); |
| 2133 } | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2134 } else if(g_list_length(gaim_accounts_get_all())) { |
| 5228 | 2135 /* 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
|
2136 for(accts = gaim_accounts_get_all(); accts; accts = accts->next) { |
| 5228 | 2137 do_import(accts->data, NULL); |
| 2138 } | |
| 2139 gaim_blist_save(); | |
| 2140 } | |
| 2141 | |
| 2142 g_free(filename); | |
| 2143 } | |
| 2144 | |
| 2145 static void blist_print_group_settings(gpointer key, gpointer data, | |
| 2146 gpointer user_data) { | |
| 2147 char *key_val; | |
| 2148 char *data_val; | |
| 2149 FILE *file = user_data; | |
| 2150 | |
| 2151 if(!key || !data) | |
| 2152 return; | |
| 2153 | |
| 2154 key_val = g_markup_escape_text(key, -1); | |
| 2155 data_val = g_markup_escape_text(data, -1); | |
| 2156 | |
| 2157 fprintf(file, "\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
| 2158 data_val); | |
| 2159 g_free(key_val); | |
| 2160 g_free(data_val); | |
| 2161 } | |
| 2162 | |
| 2163 static void blist_print_buddy_settings(gpointer key, gpointer data, | |
| 2164 gpointer user_data) { | |
| 2165 char *key_val; | |
| 2166 char *data_val; | |
| 2167 FILE *file = user_data; | |
| 2168 | |
| 2169 if(!key || !data) | |
| 2170 return; | |
| 2171 | |
| 2172 key_val = g_markup_escape_text(key, -1); | |
| 2173 data_val = g_markup_escape_text(data, -1); | |
| 2174 | |
| 2175 fprintf(file, "\t\t\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
| 2176 data_val); | |
| 2177 g_free(key_val); | |
| 2178 g_free(data_val); | |
| 2179 } | |
| 2180 | |
| 6695 | 2181 static void blist_print_cnode_settings(gpointer key, gpointer data, |
| 2182 gpointer user_data) { | |
| 2183 char *key_val; | |
| 2184 char *data_val; | |
| 2185 FILE *file = user_data; | |
| 2186 | |
| 2187 if(!key || !data) | |
| 2188 return; | |
| 2189 | |
| 2190 key_val = g_markup_escape_text(key, -1); | |
| 2191 data_val = g_markup_escape_text(data, -1); | |
| 2192 | |
| 2193 fprintf(file, "\t\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
| 2194 data_val); | |
| 2195 g_free(key_val); | |
| 2196 g_free(data_val); | |
| 2197 } | |
| 2198 | |
| 5234 | 2199 static void blist_print_chat_components(gpointer key, gpointer data, |
| 2200 gpointer user_data) { | |
| 2201 char *key_val; | |
| 2202 char *data_val; | |
| 2203 FILE *file = user_data; | |
| 2204 | |
| 2205 if(!key || !data) | |
| 2206 return; | |
| 2207 | |
| 2208 key_val = g_markup_escape_text(key, -1); | |
| 2209 data_val = g_markup_escape_text(data, -1); | |
| 2210 | |
| 2211 fprintf(file, "\t\t\t\t<component name=\"%s\">%s</component>\n", key_val, | |
| 2212 data_val); | |
| 2213 g_free(key_val); | |
| 2214 g_free(data_val); | |
| 2215 } | |
| 2216 | |
| 6695 | 2217 static void print_buddy(FILE *file, GaimBuddy *buddy) { |
| 2218 char *bud_name = g_markup_escape_text(buddy->name, -1); | |
| 2219 char *bud_alias = NULL; | |
| 2220 char *acct_name = g_markup_escape_text(buddy->account->username, -1); | |
| 2221 if(buddy->alias) | |
| 2222 bud_alias= g_markup_escape_text(buddy->alias, -1); | |
| 2223 fprintf(file, "\t\t\t\t<buddy protocol=\"%d\" " | |
| 2224 "account=\"%s\">\n", | |
| 2225 gaim_account_get_protocol(buddy->account), | |
| 2226 acct_name); | |
| 2227 fprintf(file, "\t\t\t\t\t<name>%s</name>\n", bud_name); | |
| 2228 if(bud_alias) { | |
| 2229 fprintf(file, "\t\t\t\t\t<alias>%s</alias>\n", bud_alias); | |
| 2230 } | |
| 2231 g_hash_table_foreach(buddy->settings, blist_print_buddy_settings, file); | |
| 2232 fprintf(file, "\t\t\t\t</buddy>\n"); | |
| 2233 g_free(bud_name); | |
| 2234 g_free(bud_alias); | |
| 2235 g_free(acct_name); | |
| 2236 } | |
| 2237 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2238 static void gaim_blist_write(FILE *file, GaimAccount *exp_acct) { |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2239 GList *accounts; |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2240 GSList *buds; |
| 6695 | 2241 GaimBlistNode *gnode, *cnode, *bnode; |
| 5228 | 2242 fprintf(file, "<?xml version='1.0' encoding='UTF-8' ?>\n"); |
| 2243 fprintf(file, "<gaim version=\"1\">\n"); | |
| 2244 fprintf(file, "\t<blist>\n"); | |
| 2245 | |
| 2246 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
| 6695 | 2247 GaimGroup *group; |
| 2248 | |
| 5228 | 2249 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
| 2250 continue; | |
| 6695 | 2251 |
| 2252 group = (GaimGroup *)gnode; | |
| 5228 | 2253 if(!exp_acct || gaim_group_on_account(group, exp_acct)) { |
| 2254 char *group_name = g_markup_escape_text(group->name, -1); | |
| 2255 fprintf(file, "\t\t<group name=\"%s\">\n", group_name); | |
| 2256 g_hash_table_foreach(group->settings, blist_print_group_settings, file); | |
| 6695 | 2257 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 2258 if(GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 6755 | 2259 GaimContact *contact = (GaimContact*)cnode; |
| 2260 fprintf(file, "\t\t\t<contact"); | |
| 2261 if(contact->alias) { | |
| 2262 char *alias = g_markup_escape_text(contact->alias, -1); | |
| 2263 fprintf(file, " alias=\"%s\"", alias); | |
| 2264 g_free(alias); | |
| 2265 } | |
| 2266 fprintf(file, ">\n"); | |
| 6695 | 2267 |
| 2268 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 2269 if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 2270 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
| 2271 if(!exp_acct || buddy->account == exp_acct) { | |
| 2272 print_buddy(file, buddy); | |
| 2273 } | |
| 5234 | 2274 } |
| 5228 | 2275 } |
| 6695 | 2276 |
| 2277 fprintf(file, "\t\t\t</contact>\n"); | |
| 2278 } else if(GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
| 2279 GaimBlistChat *chat = (GaimBlistChat *)cnode; | |
| 5234 | 2280 if(!exp_acct || chat->account == exp_acct) { |
| 2281 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
|
2282 fprintf(file, "\t\t\t<chat protocol=\"%d\" account=\"%s\">\n", |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2283 gaim_account_get_protocol(chat->account), |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2284 acct_name); |
| 5237 | 2285 if(chat->alias) { |
| 2286 char *chat_alias = g_markup_escape_text(chat->alias, -1); | |
| 2287 fprintf(file, "\t\t\t\t<alias>%s</alias>\n", chat_alias); | |
| 2288 g_free(chat_alias); | |
| 2289 } | |
| 5234 | 2290 g_hash_table_foreach(chat->components, |
| 2291 blist_print_chat_components, file); | |
| 5906 | 2292 g_hash_table_foreach(chat->settings, |
| 6695 | 2293 blist_print_cnode_settings, file); |
| 5234 | 2294 fprintf(file, "\t\t\t</chat>\n"); |
| 5237 | 2295 g_free(acct_name); |
| 5234 | 2296 } |
| 5228 | 2297 } |
| 2298 } | |
| 2299 fprintf(file, "\t\t</group>\n"); | |
| 2300 g_free(group_name); | |
| 2301 } | |
| 2302 } | |
| 2303 | |
| 2304 fprintf(file, "\t</blist>\n"); | |
| 2305 fprintf(file, "\t<privacy>\n"); | |
| 2306 | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2307 for(accounts = gaim_accounts_get_all(); |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2308 accounts != NULL; |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2309 accounts = accounts->next) { |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2310 |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2311 GaimAccount *account = accounts->data; |
| 5228 | 2312 char *acct_name = g_markup_escape_text(account->username, -1); |
| 2313 if(!exp_acct || account == exp_acct) { | |
| 2314 fprintf(file, "\t\t<account protocol=\"%d\" name=\"%s\" " | |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2315 "mode=\"%d\">\n", gaim_account_get_protocol(account), |
|
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2316 acct_name, account->perm_deny); |
| 5228 | 2317 for(buds = account->permit; buds; buds = buds->next) { |
| 2318 char *bud_name = g_markup_escape_text(buds->data, -1); | |
| 2319 fprintf(file, "\t\t\t<permit>%s</permit>\n", bud_name); | |
| 2320 g_free(bud_name); | |
| 2321 } | |
| 2322 for(buds = account->deny; buds; buds = buds->next) { | |
| 2323 char *bud_name = g_markup_escape_text(buds->data, -1); | |
| 2324 fprintf(file, "\t\t\t<block>%s</block>\n", bud_name); | |
| 2325 g_free(bud_name); | |
| 2326 } | |
| 2327 fprintf(file, "\t\t</account>\n"); | |
| 2328 } | |
| 2329 g_free(acct_name); | |
| 2330 } | |
| 2331 | |
| 2332 fprintf(file, "\t</privacy>\n"); | |
| 2333 fprintf(file, "</gaim>\n"); | |
| 2334 } | |
| 2335 | |
| 2336 void gaim_blist_save() { | |
| 2337 FILE *file; | |
| 2338 char *user_dir = gaim_user_dir(); | |
| 2339 char *filename; | |
| 2340 char *filename_real; | |
| 2341 | |
| 2342 if(!user_dir) | |
| 2343 return; | |
| 2344 if(!blist_safe_to_write) { | |
| 2345 gaim_debug(GAIM_DEBUG_WARNING, "blist save", | |
| 2346 "AHH!! Tried to write the blist before we read it!\n"); | |
| 2347 return; | |
| 2348 } | |
| 2349 | |
| 2350 file = fopen(user_dir, "r"); | |
| 2351 if(!file) | |
| 2352 mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); | |
| 2353 else | |
| 2354 fclose(file); | |
| 2355 | |
| 2356 filename = g_build_filename(user_dir, "blist.xml.save", NULL); | |
| 2357 | |
| 2358 if((file = fopen(filename, "w"))) { | |
| 2359 gaim_blist_write(file, NULL); | |
| 2360 fclose(file); | |
| 2361 chmod(filename, S_IRUSR | S_IWUSR); | |
| 2362 } else { | |
| 2363 gaim_debug(GAIM_DEBUG_ERROR, "blist save", "Unable to write %s\n", | |
| 2364 filename); | |
| 2365 } | |
| 2366 | |
| 2367 filename_real = g_build_filename(user_dir, "blist.xml", NULL); | |
| 2368 | |
| 2369 if(rename(filename, filename_real) < 0) | |
| 2370 gaim_debug(GAIM_DEBUG_ERROR, "blist save", | |
| 2371 "Error renaming %s to %s\n", filename, filename_real); | |
| 2372 | |
| 2373 | |
| 2374 g_free(filename); | |
| 2375 g_free(filename_real); | |
| 2376 } | |
| 2377 | |
| 6695 | 2378 void gaim_group_set_setting(GaimGroup *g, const char *key, |
| 5228 | 2379 const char *value) { |
| 2380 if(!g) | |
| 2381 return; | |
| 2382 g_hash_table_replace(g->settings, g_strdup(key), g_strdup(value)); | |
| 2383 } | |
| 2384 | |
| 6695 | 2385 char *gaim_group_get_setting(GaimGroup *g, const char *key) { |
| 5228 | 2386 if(!g) |
| 2387 return NULL; | |
| 2388 return g_strdup(g_hash_table_lookup(g->settings, key)); | |
| 2389 } | |
| 2390 | |
| 6695 | 2391 void gaim_blist_chat_set_setting(GaimBlistChat *c, const char *key, |
| 5906 | 2392 const char *value) |
| 2393 { | |
| 2394 if(!c) | |
| 2395 return; | |
| 2396 g_hash_table_replace(c->settings, g_strdup(key), g_strdup(value)); | |
| 2397 } | |
| 2398 | |
| 6695 | 2399 char *gaim_blist_chat_get_setting(GaimBlistChat *c, const char *key) |
| 5906 | 2400 { |
| 2401 if(!c) | |
| 2402 return NULL; | |
| 2403 return g_strdup(g_hash_table_lookup(c->settings, key)); | |
| 2404 } | |
| 2405 | |
| 6695 | 2406 void gaim_buddy_set_setting(GaimBuddy *b, const char *key, |
| 5228 | 2407 const char *value) { |
| 2408 if(!b) | |
| 2409 return; | |
| 2410 g_hash_table_replace(b->settings, g_strdup(key), g_strdup(value)); | |
| 2411 } | |
| 2412 | |
| 6695 | 2413 char *gaim_buddy_get_setting(GaimBuddy *b, const char *key) { |
| 5228 | 2414 if(!b) |
| 2415 return NULL; | |
| 2416 return g_strdup(g_hash_table_lookup(b->settings, key)); | |
| 2417 } | |
| 2418 | |
| 2419 void gaim_set_blist_ui_ops(struct gaim_blist_ui_ops *ops) | |
| 2420 { | |
| 2421 blist_ui_ops = ops; | |
| 2422 } | |
| 2423 | |
| 2424 struct gaim_blist_ui_ops * | |
| 2425 gaim_get_blist_ui_ops(void) | |
| 2426 { | |
| 2427 return blist_ui_ops; | |
| 2428 } | |
| 2429 | |
| 6695 | 2430 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline) { |
| 5228 | 2431 if(!group) |
| 2432 return 0; | |
| 2433 | |
| 5277 | 2434 return offline ? group->totalsize : group->currentsize; |
| 5228 | 2435 } |
| 2436 | |
| 6695 | 2437 int gaim_blist_get_group_online_count(GaimGroup *group) { |
| 5228 | 2438 if(!group) |
| 2439 return 0; | |
| 2440 | |
| 5277 | 2441 return group->online; |
| 5228 | 2442 } |
| 2443 | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2444 void * |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2445 gaim_blist_get_handle(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2446 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2447 static int handle; |
| 5228 | 2448 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2449 return &handle; |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2450 } |
|
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 void |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2453 gaim_blist_init(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2454 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2455 void *handle = gaim_blist_get_handle(); |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2456 |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2457 gaim_signal_register(handle, "buddy-away", |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2458 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2459 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2460 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2461 |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2462 gaim_signal_register(handle, "buddy-back", |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2463 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2464 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2465 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2466 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2467 gaim_signal_register(handle, "buddy-idle", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2468 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2469 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2470 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2471 gaim_signal_register(handle, "buddy-unidle", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2472 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2473 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2474 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2475 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2476 gaim_signal_register(handle, "buddy-signed-on", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2477 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2478 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2479 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2480 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2481 gaim_signal_register(handle, "buddy-signed-off", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2482 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2483 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2484 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2485 |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2486 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
|
2487 } |
|
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 void |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2490 gaim_blist_uninit(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2491 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2492 gaim_signals_unregister_by_instance(gaim_blist_get_handle()); |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2493 } |
