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