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