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