Mercurial > pidgin
annotate src/list.c @ 5041:c4b691b0cc0d
[gaim-migrate @ 5385]
some dragging fixes. hopefully kill off the last of the hangs and crashes
associated with dragging buddies and editng the list
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Sat, 05 Apr 2003 18:47:34 +0000 |
| parents | 070181118a77 |
| children | 5b1d70deda02 |
| rev | line source |
|---|---|
| 2382 | 1 /* |
| 2 * gaim | |
| 3 * | |
| 4687 | 4 * Copyright (C) 2003, Sean Egan <sean.egan@binghamton.edu> |
| 2382 | 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 */ | |
| 22 | |
| 23 #ifdef HAVE_CONFIG_H | |
| 24 #include <config.h> | |
| 25 #endif | |
| 26 #include <string.h> | |
| 4349 | 27 #include <stdlib.h> |
| 2382 | 28 #include <sys/types.h> |
| 29 #include <sys/stat.h> | |
| 3630 | 30 #ifndef _WIN32 |
| 2382 | 31 #include <unistd.h> |
| 3630 | 32 #else |
| 33 #include <direct.h> | |
| 34 #endif | |
| 4349 | 35 #include <ctype.h> |
| 2382 | 36 #include "gaim.h" |
| 37 #include "prpl.h" | |
| 4687 | 38 #include "list.h" |
| 2382 | 39 |
|
3717
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
40 #ifdef _WIN32 |
|
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
41 #include "win32dep.h" |
|
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
42 #endif |
|
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
43 |
| 2382 | 44 #define PATHSIZE 1024 |
| 45 | |
| 4687 | 46 struct gaim_buddy_list *gaimbuddylist = NULL; |
| 47 static struct gaim_blist_ui_ops *blist_ui_ops = NULL; | |
| 2382 | 48 |
| 4687 | 49 /***************************************************************************** |
| 50 * Private Utility functions * | |
| 51 *****************************************************************************/ | |
| 52 static GaimBlistNode *gaim_blist_get_last_sibling(GaimBlistNode *node) | |
| 53 { | |
| 54 GaimBlistNode *n = node; | |
| 55 if (!n) | |
| 56 return NULL; | |
| 57 while (n->next) | |
| 58 n = n->next; | |
| 59 return n; | |
| 60 } | |
| 61 static GaimBlistNode *gaim_blist_get_last_child(GaimBlistNode *node) | |
| 62 { | |
| 63 if (!node) | |
| 64 return NULL; | |
| 65 return gaim_blist_get_last_sibling(node->child); | |
| 66 } | |
| 2382 | 67 |
| 4770 | 68 /***************************************************************************** |
| 4687 | 69 * Public API functions * |
| 70 *****************************************************************************/ | |
| 4349 | 71 |
| 4687 | 72 struct gaim_buddy_list *gaim_blist_new() |
| 73 { | |
| 74 struct gaim_buddy_list *gbl = g_new0(struct gaim_buddy_list, 1); | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
75 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
76 gbl->ui_ops = gaim_get_blist_ui_ops(); |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
77 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
78 if (gbl->ui_ops != NULL && gbl->ui_ops->new_list != NULL) |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
79 gbl->ui_ops->new_list(gbl); |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
80 |
| 4687 | 81 return gbl; |
| 82 } | |
| 2382 | 83 |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
84 void |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
85 gaim_set_blist(struct gaim_buddy_list *list) |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
86 { |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
87 gaimbuddylist = list; |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
88 } |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
89 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
90 struct gaim_buddy_list * |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
91 gaim_get_blist(void) |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
92 { |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
93 return gaimbuddylist; |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
94 } |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
95 |
| 4687 | 96 void gaim_blist_show () |
| 97 { | |
| 98 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 99 if (ops) | |
| 100 ops->show(gaimbuddylist); | |
| 101 } | |
| 2382 | 102 |
| 4687 | 103 void gaim_blist_destroy() |
| 104 { | |
| 105 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 106 if (ops) | |
| 107 ops->destroy(gaimbuddylist); | |
| 108 } | |
| 2382 | 109 |
| 4687 | 110 void gaim_blist_set_visible (gboolean show) |
| 111 { | |
| 112 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 113 if (ops) | |
| 114 ops->set_visible(gaimbuddylist, show); | |
| 115 } | |
| 2382 | 116 |
| 4687 | 117 void gaim_blist_update_buddy_status (struct buddy *buddy, int status) |
| 118 { | |
| 119 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 120 buddy->uc = status; | |
| 121 if (ops) | |
| 122 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 2382 | 123 } |
| 124 | |
| 4687 | 125 void gaim_blist_update_buddy_presence(struct buddy *buddy, int presence) { |
| 126 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 4988 | 127 |
| 4687 | 128 if (!buddy->present && presence) |
| 129 buddy->present = 2; | |
| 4988 | 130 else if (buddy->present != 2 || !presence) |
| 4687 | 131 buddy->present = presence; |
| 132 if (ops) | |
| 133 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 134 } | |
| 2382 | 135 |
| 136 | |
| 4687 | 137 void gaim_blist_update_buddy_idle (struct buddy *buddy, int idle) |
| 138 { | |
| 139 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 140 buddy->idle = idle; | |
| 141 if (ops) | |
| 142 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 143 } | |
| 144 void gaim_blist_update_buddy_evil (struct buddy *buddy, int warning) | |
| 145 { | |
| 146 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 147 buddy->evil = warning; | |
| 148 if (ops) | |
| 149 ops->update(gaimbuddylist,(GaimBlistNode*)buddy); | |
| 150 } | |
| 4757 | 151 void gaim_blist_update_buddy_icon(struct buddy *buddy) { |
| 152 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 153 if(ops) | |
| 154 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 155 } | |
| 4687 | 156 void gaim_blist_rename_buddy (struct buddy *buddy, const char *name) |
| 157 { | |
| 158 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 159 g_free(buddy->name); | |
| 160 buddy->name = g_strdup(name); | |
| 161 if (ops) | |
| 162 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 163 } | |
| 164 void gaim_blist_alias_buddy (struct buddy *buddy, const char *alias) | |
| 165 { | |
| 166 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
|
4942
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
167 struct gaim_conversation *conv; |
|
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
168 |
| 4687 | 169 g_free(buddy->alias); |
|
4942
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
170 |
| 4687 | 171 buddy->alias = g_strdup(alias); |
|
4942
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
172 |
| 4687 | 173 if (ops) |
| 174 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
|
4942
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
175 |
|
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
176 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); |
|
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
177 |
|
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
178 if (conv) |
|
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
179 gaim_conversation_autoset_title(conv); |
| 4687 | 180 } |
|
4942
6a0b1eb407e5
[gaim-migrate @ 5276]
Christian Hammond <chipx86@chipx86.com>
parents:
4941
diff
changeset
|
181 |
| 4687 | 182 void gaim_blist_rename_group(struct group *group, const char *name) |
| 183 { | |
| 184 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 185 g_free(group->name); | |
| 186 group->name = g_strdup(name); | |
| 187 if (ops) | |
| 188 ops->update(gaimbuddylist, (GaimBlistNode*)group); | |
| 189 } | |
| 190 struct buddy *gaim_buddy_new(struct gaim_account *account, const char *screenname, const char *alias) | |
| 191 { | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
192 struct buddy *b; |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
193 struct gaim_blist_ui_ops *ops; |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
194 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
195 b = g_new0(struct buddy, 1); |
| 4491 | 196 b->account = account; |
| 4687 | 197 b->name = g_strdup(screenname); |
| 198 b->alias = g_strdup(alias); | |
| 4349 | 199 b->settings = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); |
| 4687 | 200 ((GaimBlistNode*)b)->type = GAIM_BLIST_BUDDY_NODE; |
| 2382 | 201 |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
202 ops = gaim_get_blist_ui_ops(); |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
203 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
204 if (ops != NULL && ops->new_node != NULL) |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
205 ops->new_node((GaimBlistNode *)b); |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
206 |
| 2382 | 207 return b; |
| 208 } | |
| 4687 | 209 void gaim_blist_add_buddy (struct buddy *buddy, struct group *group, GaimBlistNode *node) |
| 2382 | 210 { |
| 5041 | 211 GaimBlistNode *n = node, *bnode = (GaimBlistNode*)buddy; |
| 4687 | 212 struct group *g = group; |
| 213 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 4770 | 214 gboolean save = FALSE; |
| 4865 | 215 |
| 4687 | 216 if (!n) { |
| 217 if (!g) { | |
| 218 g = gaim_group_new(_("Buddies")); | |
| 219 gaim_blist_add_group(g, NULL); | |
| 220 } | |
| 221 n = gaim_blist_get_last_child((GaimBlistNode*)g); | |
| 4971 | 222 } else { |
| 223 g = (struct group*)n->parent; | |
| 4687 | 224 } |
| 225 | |
| 4941 | 226 /* if we're moving to overtop of ourselves, do nothing */ |
| 5041 | 227 if(bnode == n) |
| 4941 | 228 return; |
| 229 | |
| 5041 | 230 if (bnode->parent) { |
| 4770 | 231 /* This buddy was already in the list and is |
| 232 * being moved. | |
| 233 */ | |
| 5041 | 234 if(bnode->next) |
| 235 bnode->next->prev = bnode->prev; | |
| 236 if(bnode->prev) | |
| 237 bnode->prev->next = bnode->next; | |
| 238 if(bnode->parent->child == bnode) | |
| 239 bnode->parent->child = bnode->next; | |
| 4865 | 240 |
| 5041 | 241 ops->remove(gaimbuddylist, bnode); |
| 4770 | 242 |
| 5041 | 243 if (bnode->parent != ((GaimBlistNode*)g)) |
| 244 serv_move_buddy(buddy, (struct group*)bnode->parent, g); | |
| 4770 | 245 save = TRUE; |
| 246 } | |
| 2382 | 247 |
| 4687 | 248 if (n) { |
| 5041 | 249 if(n->next) |
| 250 n->next->prev = (GaimBlistNode*)buddy; | |
| 4687 | 251 ((GaimBlistNode*)buddy)->next = n->next; |
| 252 ((GaimBlistNode*)buddy)->prev = n; | |
| 253 ((GaimBlistNode*)buddy)->parent = n->parent; | |
| 254 n->next = (GaimBlistNode*)buddy; | |
| 255 } else { | |
| 256 ((GaimBlistNode*)g)->child = (GaimBlistNode*)buddy; | |
| 257 ((GaimBlistNode*)buddy)->next = NULL; | |
| 258 ((GaimBlistNode*)buddy)->prev = NULL; | |
| 259 ((GaimBlistNode*)buddy)->parent = (GaimBlistNode*)g; | |
| 260 } | |
| 2382 | 261 |
| 4687 | 262 if (ops) |
| 263 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); | |
| 4865 | 264 if (save) |
| 4770 | 265 gaim_blist_save(); |
| 4687 | 266 } |
| 2382 | 267 |
| 4687 | 268 struct group *gaim_group_new(const char *name) |
| 269 { | |
| 270 struct group *g = gaim_find_group(name); | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
271 |
| 4687 | 272 if (!g) { |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
273 struct gaim_blist_ui_ops *ops; |
| 4687 | 274 g= g_new0(struct group, 1); |
| 275 g->name = g_strdup(name); | |
| 276 ((GaimBlistNode*)g)->type = GAIM_BLIST_GROUP_NODE; | |
| 2382 | 277 |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
278 ops = gaim_get_blist_ui_ops(); |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
279 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
280 if (ops != NULL && ops->new_node != NULL) |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
281 ops->new_node((GaimBlistNode *)g); |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
282 |
| 4687 | 283 } |
| 2382 | 284 return g; |
| 285 } | |
| 286 | |
| 4687 | 287 void gaim_blist_add_group (struct group *group, GaimBlistNode *node) |
| 2382 | 288 { |
| 4687 | 289 struct gaim_blist_ui_ops *ops; |
| 4785 | 290 gboolean save = FALSE; |
| 291 | |
| 4687 | 292 if (!gaimbuddylist) |
| 293 gaimbuddylist = gaim_blist_new(); | |
| 294 ops = gaimbuddylist->ui_ops; | |
| 4785 | 295 |
| 4687 | 296 if (!gaimbuddylist->root) { |
| 297 gaimbuddylist->root = (GaimBlistNode*)group; | |
| 298 return; | |
| 299 } | |
| 4785 | 300 |
| 4941 | 301 if (!node) |
| 302 node = gaim_blist_get_last_sibling(gaimbuddylist->root); | |
| 303 | |
| 4937 | 304 /* if we're moving to overtop of ourselves, do nothing */ |
| 305 if((GaimBlistNode*)group == node) | |
| 306 return; | |
| 4785 | 307 |
| 4781 | 308 if (gaim_find_group(group->name)) { |
| 309 /* This is just being moved */ | |
| 310 GaimBlistNode *node2 = ((GaimBlistNode*)group)->next; | |
| 311 GaimBlistNode *node3 = ((GaimBlistNode*)group)->prev; | |
| 2382 | 312 |
| 4781 | 313 ops->remove(gaimbuddylist, (GaimBlistNode*)group); |
| 314 | |
| 315 if (node2) | |
| 316 node2->prev = node3; | |
| 317 if (node3) | |
| 318 node3->next = node2; | |
| 319 save = TRUE; | |
| 320 } | |
| 4785 | 321 |
| 4687 | 322 ((GaimBlistNode*)group)->next = node ? node->next : NULL; |
| 323 ((GaimBlistNode*)group)->prev = node; | |
| 324 node->next = (GaimBlistNode*)group; | |
| 325 | |
| 326 if (ops) | |
| 327 ops->update(gaimbuddylist, (GaimBlistNode*)group); | |
| 4785 | 328 if (save) |
| 4781 | 329 gaim_blist_save(); |
| 4687 | 330 } |
| 331 | |
| 332 void gaim_blist_remove_buddy (struct buddy *buddy) | |
| 333 { | |
| 334 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 335 | |
| 4721 | 336 GaimBlistNode *gnode, *node = (GaimBlistNode*)buddy; |
| 337 struct group *group; | |
| 338 | |
| 339 gnode = node->parent; | |
| 340 group = (struct group *)gnode; | |
| 341 | |
| 342 if(gnode->child == node) | |
| 343 gnode->child = node->next; | |
| 4687 | 344 if (node->prev) |
| 345 node->prev->next = node->next; | |
| 346 if (node->next) | |
| 347 node->next->prev = node->prev; | |
| 4721 | 348 |
| 4687 | 349 ops->remove(gaimbuddylist, node); |
| 4954 | 350 g_hash_table_destroy(buddy->settings); |
| 4687 | 351 g_free(buddy->name); |
| 352 g_free(buddy->alias); | |
| 353 g_free(buddy); | |
| 2382 | 354 } |
| 355 | |
| 4687 | 356 void gaim_blist_remove_group (struct group *group) |
| 4349 | 357 { |
| 4687 | 358 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; |
| 359 GaimBlistNode *node = (GaimBlistNode*)group; | |
| 4938 | 360 |
| 361 if(node->child) { | |
| 362 char *buf; | |
| 363 int count = 0; | |
| 364 GaimBlistNode *child = node->child; | |
| 365 | |
| 366 while(child) { | |
| 367 count++; | |
| 368 child = child->next; | |
| 369 } | |
| 370 | |
| 371 buf = g_strdup_printf(_("%d buddies from group %s were not " | |
| 372 "removed because their accounts were not logged in. These " | |
| 373 "buddies, and the group were not removed.\n"), | |
| 374 count, group->name); | |
| 375 do_error_dialog(_("Group Not Removed"), buf, GAIM_ERROR); | |
| 376 g_free(buf); | |
| 377 return; | |
| 4687 | 378 } |
| 4936 | 379 |
| 4938 | 380 if(node->parent && node->parent->child == node) |
| 4936 | 381 node->parent->child = node->next; |
| 382 if (node->prev) | |
| 383 node->prev->next = node->next; | |
| 384 if (node->next) | |
| 385 node->next->prev = node->prev; | |
| 386 | |
| 4687 | 387 ops->remove(gaimbuddylist, node); |
| 388 g_free(group->name); | |
| 389 g_free(group); | |
| 390 } | |
| 4349 | 391 |
| 4687 | 392 char *gaim_get_buddy_alias_only(struct buddy *b) { |
| 393 if(!b) | |
| 394 return NULL; | |
| 395 if(b->alias && b->alias[0]) | |
| 396 return b->alias; | |
| 397 else if((misc_options & OPT_MISC_USE_SERVER_ALIAS) && b->server_alias) | |
| 398 return b->server_alias; | |
| 399 return NULL; | |
| 400 } | |
| 401 | |
| 402 char * gaim_get_buddy_alias (struct buddy *buddy) | |
| 403 { | |
| 404 char *ret = gaim_get_buddy_alias_only(buddy); | |
| 405 if(!ret) | |
| 406 return buddy ? buddy->name : _("Unknown"); | |
| 407 return ret; | |
| 408 | |
| 409 } | |
| 410 | |
| 411 struct buddy *gaim_find_buddy(struct gaim_account *account, const char *name) | |
| 412 { | |
| 4757 | 413 GaimBlistNode *group; |
| 4687 | 414 GaimBlistNode *buddy; |
| 4757 | 415 char *norm_name = g_strdup(normalize(name)); |
| 416 | |
| 4687 | 417 if (!gaimbuddylist) |
| 418 return NULL; | |
| 4757 | 419 |
| 420 group = gaimbuddylist->root; | |
| 4687 | 421 while (group) { |
| 422 buddy = group->child; | |
| 423 while (buddy) { | |
| 4793 | 424 if (!gaim_utf8_strcasecmp(normalize(((struct buddy*)buddy)->name), norm_name) && account == ((struct buddy*)buddy)->account) { |
| 4757 | 425 g_free(norm_name); |
| 4687 | 426 return (struct buddy*)buddy; |
| 4757 | 427 } |
| 4687 | 428 buddy = buddy->next; |
| 429 } | |
| 430 group = group->next; | |
| 4349 | 431 } |
| 4757 | 432 g_free(norm_name); |
| 4349 | 433 return NULL; |
| 434 } | |
| 435 | |
| 4687 | 436 struct group *gaim_find_group(const char *name) |
| 2382 | 437 { |
| 4687 | 438 GaimBlistNode *node; |
| 439 if (!gaimbuddylist) | |
| 440 return NULL; | |
| 441 node = gaimbuddylist->root; | |
| 442 while(node) { | |
| 443 if (!strcmp(((struct group*)node)->name, name)) | |
| 444 return (struct group*)node; | |
| 445 node = node->next; | |
| 2382 | 446 } |
| 4349 | 447 return NULL; |
| 2382 | 448 } |
| 4687 | 449 struct group *gaim_find_buddys_group(struct buddy *buddy) |
| 450 { | |
| 4830 | 451 if (!buddy) |
| 452 return NULL; | |
| 4687 | 453 return (struct group*)(((GaimBlistNode*)buddy)->parent); |
| 454 } | |
| 455 | |
| 456 GSList *gaim_group_get_accounts(struct group *g) | |
| 457 { | |
| 458 GSList *l = NULL; | |
| 459 GaimBlistNode *child = ((GaimBlistNode *)g)->child; | |
| 460 | |
| 461 while (child) { | |
| 462 if (!g_slist_find(l, ((struct buddy*)child)->account)) | |
| 463 l = g_slist_append(l, ((struct buddy*)child)->account); | |
| 464 child = child->next; | |
| 465 } | |
| 466 return l; | |
| 467 } | |
| 468 | |
| 469 void gaim_blist_remove_account(struct gaim_account *account) | |
| 470 { | |
| 471 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; | |
| 472 GaimBlistNode *group = gaimbuddylist->root; | |
| 473 GaimBlistNode *buddy; | |
| 474 if (!gaimbuddylist) | |
| 475 return; | |
| 476 while (group) { | |
| 477 buddy = group->child; | |
| 478 while (buddy) { | |
| 479 if (account == ((struct buddy*)buddy)->account) { | |
| 480 ((struct buddy*)buddy)->present = 0; | |
| 4919 | 481 if(ops) |
| 482 ops->remove(gaimbuddylist, buddy); | |
| 4687 | 483 } |
| 484 buddy = buddy->next; | |
| 485 } | |
| 486 group = group->next; | |
| 487 } | |
| 488 } | |
| 2382 | 489 |
| 4491 | 490 void parse_toc_buddy_list(struct gaim_account *account, char *config) |
| 2382 | 491 { |
| 492 char *c; | |
| 493 char current[256]; | |
| 4351 | 494 GList *bud = NULL; |
| 4349 | 495 |
| 2382 | 496 |
| 497 if (config != NULL) { | |
| 4349 | 498 |
| 2382 | 499 /* skip "CONFIG:" (if it exists) */ |
| 500 c = strncmp(config + 6 /* sizeof(struct sflap_hdr) */ , "CONFIG:", strlen("CONFIG:")) ? | |
| 2998 | 501 strtok(config, "\n") : |
| 502 strtok(config + 6 /* sizeof(struct sflap_hdr) */ + strlen("CONFIG:"), "\n"); | |
| 2382 | 503 do { |
| 504 if (c == NULL) | |
| 505 break; | |
| 506 if (*c == 'g') { | |
| 4404 | 507 char *utf8 = NULL; |
| 4458 | 508 utf8 = gaim_try_conv_to_utf8(c + 2); |
| 4404 | 509 if (utf8 == NULL) { |
| 510 g_strlcpy(current, _("Invalid Groupname"), sizeof(current)); | |
| 511 } else { | |
| 512 g_strlcpy(current, utf8, sizeof(current)); | |
| 513 g_free(utf8); | |
| 514 } | |
| 4687 | 515 if (!gaim_find_group(current)) { |
| 516 struct group *g = gaim_group_new(current); | |
| 517 gaim_blist_add_group(g, NULL); | |
|
2526
413a81136e3a
[gaim-migrate @ 2539]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2382
diff
changeset
|
518 } |
| 4687 | 519 } else if (*c == 'b') { /*&& !gaim_find_buddy(user, c + 2)) {*/ |
| 520 char nm[80], sw[388], *a, *utf8 = NULL; | |
| 4408 | 521 |
| 4404 | 522 if ((a = strchr(c + 2, ':')) != NULL) { |
| 523 *a++ = '\0'; /* nul the : */ | |
| 524 } | |
| 4349 | 525 |
| 4404 | 526 g_strlcpy(nm, c + 2, sizeof(nm)); |
| 527 if (a) { | |
| 4458 | 528 utf8 = gaim_try_conv_to_utf8(a); |
| 4404 | 529 if (utf8 == NULL) { |
| 530 debug_printf ("Failed to convert alias for '%s' to UTF-8\n", nm); | |
| 531 } | |
| 532 } | |
| 533 if (utf8 == NULL) { | |
| 534 sw[0] = '\0'; | |
| 535 } else { | |
| 4491 | 536 /* This can leave a partial sequence at the end, |
| 4404 | 537 * but who cares? */ |
| 538 g_strlcpy(sw, utf8, sizeof(sw)); | |
| 539 g_free(utf8); | |
| 540 } | |
| 4491 | 541 |
| 4687 | 542 if (!gaim_find_buddy(account, nm)) { |
| 543 struct buddy *b = gaim_buddy_new(account, nm, sw); | |
| 544 struct group *g = gaim_find_group(current); | |
| 545 gaim_blist_add_buddy(b, g, NULL); | |
|
4950
e81625009ab3
[gaim-migrate @ 5284]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4942
diff
changeset
|
546 bud = g_list_append(bud, g_strdup(nm)); |
|
2526
413a81136e3a
[gaim-migrate @ 2539]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2382
diff
changeset
|
547 } |
| 2382 | 548 } else if (*c == 'p') { |
| 4491 | 549 gaim_privacy_permit_add(account, c + 2); |
| 2382 | 550 } else if (*c == 'd') { |
| 4491 | 551 gaim_privacy_deny_add(account, c + 2); |
| 2382 | 552 } else if (!strncmp("toc", c, 3)) { |
| 4491 | 553 sscanf(c + strlen(c) - 1, "%d", &account->permdeny); |
| 554 debug_printf("permdeny: %d\n", account->permdeny); | |
| 555 if (account->permdeny == 0) | |
| 556 account->permdeny = 1; | |
| 2382 | 557 } else if (*c == 'm') { |
| 4491 | 558 sscanf(c + 2, "%d", &account->permdeny); |
| 559 debug_printf("permdeny: %d\n", account->permdeny); | |
| 560 if (account->permdeny == 0) | |
| 561 account->permdeny = 1; | |
| 2382 | 562 } |
| 563 } while ((c = strtok(NULL, "\n"))); | |
| 4351 | 564 |
| 4491 | 565 if(account->gc) { |
|
4950
e81625009ab3
[gaim-migrate @ 5284]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4942
diff
changeset
|
566 if(bud) { |
|
e81625009ab3
[gaim-migrate @ 5284]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4942
diff
changeset
|
567 GList *node = bud; |
| 4491 | 568 serv_add_buddies(account->gc, bud); |
|
4950
e81625009ab3
[gaim-migrate @ 5284]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4942
diff
changeset
|
569 while(node) { |
|
e81625009ab3
[gaim-migrate @ 5284]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4942
diff
changeset
|
570 g_free(node->data); |
|
e81625009ab3
[gaim-migrate @ 5284]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4942
diff
changeset
|
571 node = node->next; |
|
e81625009ab3
[gaim-migrate @ 5284]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4942
diff
changeset
|
572 } |
|
e81625009ab3
[gaim-migrate @ 5284]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4942
diff
changeset
|
573 } |
| 4491 | 574 serv_set_permit_deny(account->gc); |
| 4351 | 575 } |
| 576 g_list_free(bud); | |
| 2382 | 577 } |
| 578 } | |
| 579 | |
| 4687 | 580 #if 0 |
|
2536
0e0a54e5819a
[gaim-migrate @ 2549]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2526
diff
changeset
|
581 /* translate an AIM 3 buddylist (*.lst) to a Gaim buddylist */ |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
582 static GString *translate_lst(FILE *src_fp) |
| 2382 | 583 { |
| 584 char line[BUF_LEN], *line2; | |
| 585 char *name; | |
| 586 int i; | |
| 587 | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
588 GString *dest = g_string_new("m 1\n"); |
| 2382 | 589 |
| 590 while (fgets(line, BUF_LEN, src_fp)) { | |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
591 line2 = g_strchug(line); |
| 2382 | 592 if (strstr(line2, "group") == line2) { |
| 593 name = strpbrk(line2, " \t\n\r\f") + 1; | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
594 dest = g_string_append(dest, "g "); |
| 2382 | 595 for (i = 0; i < strcspn(name, "\n\r"); i++) |
| 596 if (name[i] != '\"') | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
597 dest = g_string_append_c(dest, name[i]); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
598 dest = g_string_append_c(dest, '\n'); |
| 2382 | 599 } |
| 600 if (strstr(line2, "buddy") == line2) { | |
| 601 name = strpbrk(line2, " \t\n\r\f") + 1; | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
602 dest = g_string_append(dest, "b "); |
| 2382 | 603 for (i = 0; i < strcspn(name, "\n\r"); i++) |
| 604 if (name[i] != '\"') | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
605 dest = g_string_append_c(dest, name[i]); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
606 dest = g_string_append_c(dest, '\n'); |
| 2382 | 607 } |
| 608 } | |
| 609 | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
610 return dest; |
| 2382 | 611 } |
| 612 | |
| 613 | |
|
2536
0e0a54e5819a
[gaim-migrate @ 2549]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2526
diff
changeset
|
614 /* translate an AIM 4 buddylist (*.blt) to Gaim format */ |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
615 static GString *translate_blt(FILE *src_fp) |
| 2382 | 616 { |
| 617 int i; | |
| 618 char line[BUF_LEN]; | |
| 619 char *buddy; | |
| 620 | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
621 GString *dest = g_string_new("m 1\n"); |
| 2382 | 622 |
| 623 while (strstr(fgets(line, BUF_LEN, src_fp), "Buddy") == NULL); | |
| 624 while (strstr(fgets(line, BUF_LEN, src_fp), "list") == NULL); | |
| 625 | |
| 626 while (1) { | |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
627 fgets(line, BUF_LEN, src_fp); g_strchomp(line); |
| 2382 | 628 if (strchr(line, '}') != NULL) |
| 629 break; | |
| 630 | |
| 631 if (strchr(line, '{') != NULL) { | |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
632 /* Syntax starting with "<group> {" */ |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
633 |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
634 dest = g_string_append(dest, "g "); |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
635 buddy = g_strchug(strtok(line, "{")); |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
636 for (i = 0; i < strlen(buddy); i++) |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
637 if (buddy[i] != '\"') |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
638 dest = g_string_append_c(dest, buddy[i]); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
639 dest = g_string_append_c(dest, '\n'); |
| 2382 | 640 while (strchr(fgets(line, BUF_LEN, src_fp), '}') == NULL) { |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
641 gboolean pounce = FALSE; |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
642 char *e; |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
643 g_strchomp(line); |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
644 buddy = g_strchug(line); |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
645 debug_printf("\nbuddy: \"%s\"\n\n", buddy); |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
646 dest = g_string_append(dest, "b "); |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
647 if (strchr(buddy, '{') != NULL) { |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
648 /* buddy pounce, etc */ |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
649 char *pos = strchr(buddy, '{') - 1; |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
650 *pos = 0; |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
651 pounce = TRUE; |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
652 } |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
653 if ((e = strchr(buddy, '\"')) != NULL) { |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
654 *e = '\0'; |
| 2382 | 655 buddy++; |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
656 } |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
657 dest = g_string_append(dest, buddy); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
658 dest = g_string_append_c(dest, '\n'); |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
659 if (pounce) |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
660 do |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
661 fgets(line, BUF_LEN, src_fp); |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
662 while (!strchr(line, '}')); |
| 2382 | 663 } |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
664 } else { |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
665 |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
666 /* Syntax "group buddy buddy ..." */ |
|
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
667 buddy = g_strchug(strtok(line, " \n")); |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
668 dest = g_string_append(dest, "g "); |
| 2382 | 669 if (strchr(buddy, '\"') != NULL) { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
670 dest = g_string_append(dest, &buddy[1]); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
671 dest = g_string_append_c(dest, ' '); |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
672 buddy = g_strchug(strtok(NULL, " \n")); |
| 2382 | 673 while (strchr(buddy, '\"') == NULL) { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
674 dest = g_string_append(dest, buddy); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
675 dest = g_string_append_c(dest, ' '); |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
676 buddy = g_strchug(strtok(NULL, " \n")); |
| 2382 | 677 } |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
678 buddy[strlen(buddy) - 1] = '\0'; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
679 dest = g_string_append(dest, buddy); |
| 2382 | 680 } else { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
681 dest = g_string_append(dest, buddy); |
| 2382 | 682 } |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
683 dest = g_string_append_c(dest, '\n'); |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
684 while ((buddy = g_strchug(strtok(NULL, " \n"))) != NULL) { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
685 dest = g_string_append(dest, "b "); |
| 2382 | 686 if (strchr(buddy, '\"') != NULL) { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
687 dest = g_string_append(dest, &buddy[1]); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
688 dest = g_string_append_c(dest, ' '); |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
689 buddy = g_strchug(strtok(NULL, " \n")); |
| 2382 | 690 while (strchr(buddy, '\"') == NULL) { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
691 dest = g_string_append(dest, buddy); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
692 dest = g_string_append_c(dest, ' '); |
|
2548
20418e5702eb
[gaim-migrate @ 2561]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2536
diff
changeset
|
693 buddy = g_strchug(strtok(NULL, " \n")); |
| 2382 | 694 } |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
695 buddy[strlen(buddy) - 1] = '\0'; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
696 dest = g_string_append(dest, buddy); |
| 2382 | 697 } else { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
698 dest = g_string_append(dest, buddy); |
| 2382 | 699 } |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
700 dest = g_string_append_c(dest, '\n'); |
| 2382 | 701 } |
| 702 } | |
| 703 } | |
| 704 | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
705 return dest; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
706 } |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
707 |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
708 static GString *translate_gnomeicu(FILE *src_fp) |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
709 { |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
710 char line[BUF_LEN]; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
711 GString *dest = g_string_new("m 1\ng Buddies\n"); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
712 |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
713 while (strstr(fgets(line, BUF_LEN, src_fp), "NewContacts") == NULL); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
714 |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
715 while (fgets(line, BUF_LEN, src_fp)) { |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
716 char *eq; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
717 g_strchomp(line); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
718 if (line[0] == '\n' || line[0] == '[') |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
719 break; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
720 eq = strchr(line, '='); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
721 if (!eq) |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
722 break; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
723 *eq = ':'; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
724 eq = strchr(eq, ','); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
725 if (eq) |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
726 *eq = '\0'; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
727 dest = g_string_append(dest, "b "); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
728 dest = g_string_append(dest, line); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
729 dest = g_string_append_c(dest, '\n'); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
730 } |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
731 |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
732 return dest; |
| 2382 | 733 } |
| 4687 | 734 #endif |
| 2382 | 735 |
| 736 static gchar *get_screenname_filename(const char *name) | |
| 737 { | |
| 738 gchar **split; | |
| 739 gchar *good; | |
| 4793 | 740 gchar *ret; |
| 2382 | 741 |
| 742 split = g_strsplit(name, G_DIR_SEPARATOR_S, -1); | |
| 743 good = g_strjoinv(NULL, split); | |
| 744 g_strfreev(split); | |
| 745 | |
| 4793 | 746 ret = g_utf8_strup(good, -1); |
| 2382 | 747 |
| 4793 | 748 g_free(good); |
| 749 | |
| 750 return ret; | |
| 2382 | 751 } |
| 752 | |
| 4349 | 753 static gboolean gaim_blist_read(const char *filename); |
| 2382 | 754 |
| 4687 | 755 |
| 756 static void do_import(struct gaim_account *account, const char *filename) | |
| 2382 | 757 { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
758 GString *buf = NULL; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
759 char first[64]; |
| 2382 | 760 char path[PATHSIZE]; |
| 761 int len; | |
| 762 FILE *f; | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
763 struct stat st; |
| 2382 | 764 |
| 765 if (filename) { | |
| 766 g_snprintf(path, sizeof(path), "%s", filename); | |
| 767 } else { | |
| 4491 | 768 char *g_screenname = get_screenname_filename(account->username); |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
769 char *file = gaim_user_dir(); |
| 4491 | 770 int protocol = (account->protocol == PROTO_OSCAR) ? (isalpha(account->username[0]) ? PROTO_TOC : PROTO_ICQ): account->protocol; |
| 2382 | 771 |
| 772 if (file != (char *)NULL) { | |
| 4349 | 773 sprintf(path, "%s" G_DIR_SEPARATOR_S "%s.%d.blist", file, g_screenname, protocol); |
| 2382 | 774 g_free(g_screenname); |
| 775 } else { | |
| 776 g_free(g_screenname); | |
| 777 return; | |
| 778 } | |
| 779 } | |
| 780 | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
781 if (stat(path, &st)) { |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
782 debug_printf("Unable to stat %s.\n", path); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
783 return; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
784 } |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
785 |
| 2382 | 786 if (!(f = fopen(path, "r"))) { |
| 787 debug_printf("Unable to open %s.\n", path); | |
| 788 return; | |
| 789 } | |
| 790 | |
| 791 fgets(first, 64, f); | |
| 792 | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
793 if ((first[0] == '\n') || (first[0] == '\r' && first[1] == '\n')) |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
794 fgets(first, 64, f); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
795 |
| 4687 | 796 #if 0 |
| 4349 | 797 if (!g_strncasecmp(first, "<xml", strlen("<xml"))) { |
| 798 /* new gaim XML buddy list */ | |
| 799 gaim_blist_read(path); | |
| 4687 | 800 |
| 801 /* We really don't need to bother doing stuf like translating AIM 3 buddy lists anymore */ | |
| 802 | |
| 4349 | 803 } else if (!g_strncasecmp(first, "Config {", strlen("Config {"))) { |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
804 /* AIM 4 buddy list */ |
| 2382 | 805 debug_printf("aim 4\n"); |
| 806 rewind(f); | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
807 buf = translate_blt(f); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
808 } else if (strstr(first, "group") != NULL) { |
| 2382 | 809 /* AIM 3 buddy list */ |
| 810 debug_printf("aim 3\n"); | |
| 811 rewind(f); | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
812 buf = translate_lst(f); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
813 } else if (!g_strncasecmp(first, "[User]", strlen("[User]"))) { |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
814 /* GnomeICU (hopefully) */ |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
815 debug_printf("gnomeicu\n"); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
816 rewind(f); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
817 buf = translate_gnomeicu(f); |
| 4687 | 818 |
| 819 } else | |
| 820 #endif | |
| 821 if (first[0] == 'm') { | |
| 822 /* Gaim buddy list - no translation */ | |
| 823 char buf2[BUF_LONG * 2]; | |
| 824 buf = g_string_new(""); | |
| 825 rewind(f); | |
| 826 while (1) { | |
| 827 len = fread(buf2, 1, BUF_LONG * 2 - 1, f); | |
| 828 if (len <= 0) | |
| 829 break; | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
830 buf2[len] = '\0'; |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
831 buf = g_string_append(buf, buf2); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
832 if (len != BUF_LONG * 2 - 1) |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
833 break; |
| 4687 | 834 } |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
835 } |
| 4687 | 836 |
| 2382 | 837 fclose(f); |
| 838 | |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
839 if (buf) { |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
840 buf = g_string_prepend(buf, "toc_set_config {"); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
841 buf = g_string_append(buf, "}\n"); |
| 4491 | 842 parse_toc_buddy_list(account, buf->str); |
|
2825
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
843 g_string_free(buf, TRUE); |
|
8cd878c14090
[gaim-migrate @ 2838]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
844 } |
| 2382 | 845 } |
| 846 | |
| 4491 | 847 gboolean gaim_group_on_account(struct group *g, struct gaim_account *account) { |
| 4785 | 848 GaimBlistNode *bnode; |
| 849 for(bnode = g->node.child; bnode; bnode = bnode->next) { | |
| 850 struct buddy *b = (struct buddy *)bnode; | |
| 851 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 852 continue; | |
| 4491 | 853 if((!account && b->account->gc) || b->account == account) |
| 4349 | 854 return TRUE; |
| 855 } | |
| 856 return FALSE; | |
| 857 } | |
| 858 | |
| 4497 | 859 static gboolean blist_safe_to_write = FALSE; |
| 4349 | 860 |
| 861 static char *blist_parser_group_name = NULL; | |
| 862 static char *blist_parser_person_name = NULL; | |
| 863 static char *blist_parser_account_name = NULL; | |
| 864 static int blist_parser_account_protocol = 0; | |
| 865 static char *blist_parser_buddy_name = NULL; | |
| 866 static char *blist_parser_buddy_alias = NULL; | |
| 867 static char *blist_parser_setting_name = NULL; | |
| 868 static char *blist_parser_setting_value = NULL; | |
| 869 static GHashTable *blist_parser_buddy_settings = NULL; | |
| 870 static int blist_parser_privacy_mode = 0; | |
| 871 static enum { | |
| 872 BLIST_TAG_GAIM, | |
| 873 BLIST_TAG_BLIST, | |
| 874 BLIST_TAG_GROUP, | |
| 875 BLIST_TAG_PERSON, | |
| 876 BLIST_TAG_BUDDY, | |
| 877 BLIST_TAG_NAME, | |
| 878 BLIST_TAG_ALIAS, | |
| 879 BLIST_TAG_SETTING, | |
| 880 BLIST_TAG_PRIVACY, | |
| 881 BLIST_TAG_ACCOUNT, | |
| 882 BLIST_TAG_PERMIT, | |
| 883 BLIST_TAG_BLOCK, | |
| 884 BLIST_TAG_IGNORE | |
| 885 } blist_parser_current_tag; | |
| 4439 | 886 static gboolean blist_parser_error_occurred = FALSE; |
| 4349 | 887 |
| 888 static void blist_start_element_handler (GMarkupParseContext *context, | |
| 889 const gchar *element_name, | |
| 890 const gchar **attribute_names, | |
| 891 const gchar **attribute_values, | |
| 892 gpointer user_data, | |
| 893 GError **error) { | |
| 894 int i; | |
| 895 | |
| 896 if(!strcmp(element_name, "gaim")) { | |
| 897 blist_parser_current_tag = BLIST_TAG_GAIM; | |
| 898 } else if(!strcmp(element_name, "blist")) { | |
| 899 blist_parser_current_tag = BLIST_TAG_BLIST; | |
| 900 } else if(!strcmp(element_name, "group")) { | |
| 901 blist_parser_current_tag = BLIST_TAG_GROUP; | |
| 902 for(i=0; attribute_names[i]; i++) { | |
| 4444 | 903 if(!strcmp(attribute_names[i], "name")) { |
| 904 g_free(blist_parser_group_name); | |
| 4349 | 905 blist_parser_group_name = g_strdup(attribute_values[i]); |
| 4444 | 906 } |
| 4349 | 907 } |
| 908 if(blist_parser_group_name) { | |
| 4687 | 909 struct group *g = gaim_group_new(blist_parser_group_name); |
| 910 gaim_blist_add_group(g,NULL); | |
| 4349 | 911 } |
| 912 } else if(!strcmp(element_name, "person")) { | |
| 913 blist_parser_current_tag = BLIST_TAG_PERSON; | |
| 914 for(i=0; attribute_names[i]; i++) { | |
| 4444 | 915 if(!strcmp(attribute_names[i], "name")) { |
| 916 g_free(blist_parser_person_name); | |
| 4349 | 917 blist_parser_person_name = g_strdup(attribute_values[i]); |
| 4444 | 918 } |
| 4349 | 919 } |
| 920 } else if(!strcmp(element_name, "buddy")) { | |
| 921 blist_parser_current_tag = BLIST_TAG_BUDDY; | |
| 922 for(i=0; attribute_names[i]; i++) { | |
| 4444 | 923 if(!strcmp(attribute_names[i], "account")) { |
| 924 g_free(blist_parser_account_name); | |
| 4349 | 925 blist_parser_account_name = g_strdup(attribute_values[i]); |
| 4444 | 926 } else if(!strcmp(attribute_names[i], "protocol")) { |
| 4349 | 927 blist_parser_account_protocol = atoi(attribute_values[i]); |
| 4444 | 928 } |
| 4349 | 929 } |
| 930 } else if(!strcmp(element_name, "name")) { | |
| 931 blist_parser_current_tag = BLIST_TAG_NAME; | |
| 932 } else if(!strcmp(element_name, "alias")) { | |
| 933 blist_parser_current_tag = BLIST_TAG_ALIAS; | |
| 934 } else if(!strcmp(element_name, "setting")) { | |
| 935 blist_parser_current_tag = BLIST_TAG_SETTING; | |
| 936 for(i=0; attribute_names[i]; i++) { | |
| 4444 | 937 if(!strcmp(attribute_names[i], "name")) { |
| 938 g_free(blist_parser_setting_name); | |
| 4349 | 939 blist_parser_setting_name = g_strdup(attribute_values[i]); |
| 4444 | 940 } |
| 4349 | 941 } |
| 942 } else if(!strcmp(element_name, "privacy")) { | |
| 943 blist_parser_current_tag = BLIST_TAG_PRIVACY; | |
| 944 } else if(!strcmp(element_name, "account")) { | |
| 945 blist_parser_current_tag = BLIST_TAG_ACCOUNT; | |
| 946 for(i=0; attribute_names[i]; i++) { | |
| 947 if(!strcmp(attribute_names[i], "protocol")) | |
| 948 blist_parser_account_protocol = atoi(attribute_values[i]); | |
| 949 else if(!strcmp(attribute_names[i], "mode")) | |
| 950 blist_parser_privacy_mode = atoi(attribute_values[i]); | |
| 4444 | 951 else if(!strcmp(attribute_names[i], "name")) { |
| 952 g_free(blist_parser_account_name); | |
| 4349 | 953 blist_parser_account_name = g_strdup(attribute_values[i]); |
| 4444 | 954 } |
| 4349 | 955 } |
| 956 } else if(!strcmp(element_name, "permit")) { | |
| 957 blist_parser_current_tag = BLIST_TAG_PERMIT; | |
| 958 } else if(!strcmp(element_name, "block")) { | |
| 959 blist_parser_current_tag = BLIST_TAG_BLOCK; | |
| 960 } else if(!strcmp(element_name, "ignore")) { | |
| 961 blist_parser_current_tag = BLIST_TAG_IGNORE; | |
| 962 } | |
| 963 } | |
| 964 | |
| 965 static void blist_end_element_handler(GMarkupParseContext *context, | |
| 966 const gchar *element_name, gpointer user_data, GError **error) { | |
| 967 if(!strcmp(element_name, "gaim")) { | |
| 968 } else if(!strcmp(element_name, "blist")) { | |
| 969 blist_parser_current_tag = BLIST_TAG_GAIM; | |
| 970 } else if(!strcmp(element_name, "group")) { | |
| 971 blist_parser_current_tag = BLIST_TAG_BLIST; | |
| 972 } else if(!strcmp(element_name, "person")) { | |
| 973 blist_parser_current_tag = BLIST_TAG_GROUP; | |
| 974 g_free(blist_parser_person_name); | |
| 975 blist_parser_person_name = NULL; | |
| 976 } else if(!strcmp(element_name, "buddy")) { | |
| 4491 | 977 struct gaim_account *account = gaim_account_find(blist_parser_account_name, |
| 4349 | 978 blist_parser_account_protocol); |
| 4491 | 979 if(account) { |
| 4687 | 980 struct buddy *b = gaim_buddy_new(account, blist_parser_buddy_name, blist_parser_buddy_alias); |
| 981 struct group *g = gaim_find_group(blist_parser_group_name); | |
| 982 gaim_blist_add_buddy(b,g,NULL); | |
| 4349 | 983 if(blist_parser_buddy_settings) { |
| 984 g_hash_table_destroy(b->settings); | |
| 985 b->settings = blist_parser_buddy_settings; | |
| 986 } | |
| 987 } | |
| 988 blist_parser_current_tag = BLIST_TAG_PERSON; | |
| 989 g_free(blist_parser_buddy_name); | |
| 990 blist_parser_buddy_name = NULL; | |
| 991 g_free(blist_parser_buddy_alias); | |
| 992 blist_parser_buddy_alias = NULL; | |
| 993 g_free(blist_parser_account_name); | |
| 994 blist_parser_account_name = NULL; | |
| 995 blist_parser_buddy_settings = NULL; | |
| 996 } else if(!strcmp(element_name, "name")) { | |
| 997 blist_parser_current_tag = BLIST_TAG_BUDDY; | |
| 998 } else if(!strcmp(element_name, "alias")) { | |
| 999 blist_parser_current_tag = BLIST_TAG_BUDDY; | |
| 1000 } else if(!strcmp(element_name, "setting")) { | |
| 1001 if(!blist_parser_buddy_settings) | |
| 1002 blist_parser_buddy_settings = g_hash_table_new_full(g_str_hash, | |
| 1003 g_str_equal, g_free, g_free); | |
| 1004 if(blist_parser_setting_name && blist_parser_setting_value) { | |
| 1005 g_hash_table_replace(blist_parser_buddy_settings, | |
| 1006 g_strdup(blist_parser_setting_name), | |
| 1007 g_strdup(blist_parser_setting_value)); | |
| 1008 } | |
| 1009 g_free(blist_parser_setting_name); | |
| 1010 g_free(blist_parser_setting_value); | |
| 4720 | 1011 blist_parser_setting_name = NULL; |
| 1012 blist_parser_setting_value = NULL; | |
| 4349 | 1013 blist_parser_current_tag = BLIST_TAG_BUDDY; |
| 1014 } else if(!strcmp(element_name, "privacy")) { | |
| 1015 blist_parser_current_tag = BLIST_TAG_GAIM; | |
| 1016 } else if(!strcmp(element_name, "account")) { | |
| 4491 | 1017 struct gaim_account *account = gaim_account_find(blist_parser_account_name, |
| 4349 | 1018 blist_parser_account_protocol); |
| 4491 | 1019 if(account) { |
| 1020 account->permdeny = blist_parser_privacy_mode; | |
| 4349 | 1021 } |
| 1022 blist_parser_current_tag = BLIST_TAG_PRIVACY; | |
| 1023 g_free(blist_parser_account_name); | |
| 1024 blist_parser_account_name = NULL; | |
| 1025 } else if(!strcmp(element_name, "permit")) { | |
| 4491 | 1026 struct gaim_account *account = gaim_account_find(blist_parser_account_name, |
| 4349 | 1027 blist_parser_account_protocol); |
| 4491 | 1028 if(account) { |
| 1029 gaim_privacy_permit_add(account, blist_parser_buddy_name); | |
| 4349 | 1030 } |
| 4444 | 1031 blist_parser_current_tag = BLIST_TAG_ACCOUNT; |
| 4442 | 1032 g_free(blist_parser_buddy_name); |
| 4444 | 1033 blist_parser_buddy_name = NULL; |
| 4349 | 1034 } else if(!strcmp(element_name, "block")) { |
| 4491 | 1035 struct gaim_account *account = gaim_account_find(blist_parser_account_name, |
| 4349 | 1036 blist_parser_account_protocol); |
| 4491 | 1037 if(account) { |
| 1038 gaim_privacy_deny_add(account, blist_parser_buddy_name); | |
| 4349 | 1039 } |
| 4444 | 1040 blist_parser_current_tag = BLIST_TAG_ACCOUNT; |
| 4442 | 1041 g_free(blist_parser_buddy_name); |
| 4444 | 1042 blist_parser_buddy_name = NULL; |
| 4349 | 1043 } else if(!strcmp(element_name, "ignore")) { |
| 1044 /* we'll apparently do something with this later */ | |
| 1045 blist_parser_current_tag = BLIST_TAG_ACCOUNT; | |
| 1046 } | |
| 1047 } | |
| 1048 | |
| 1049 static void blist_text_handler(GMarkupParseContext *context, const gchar *text, | |
| 1050 gsize text_len, gpointer user_data, GError **error) { | |
| 1051 switch(blist_parser_current_tag) { | |
| 1052 case BLIST_TAG_NAME: | |
| 1053 blist_parser_buddy_name = g_strndup(text, text_len); | |
| 1054 break; | |
| 1055 case BLIST_TAG_ALIAS: | |
| 1056 blist_parser_buddy_alias = g_strndup(text, text_len); | |
| 1057 break; | |
| 1058 case BLIST_TAG_PERMIT: | |
| 1059 case BLIST_TAG_BLOCK: | |
| 1060 case BLIST_TAG_IGNORE: | |
| 1061 blist_parser_buddy_name = g_strndup(text, text_len); | |
| 1062 break; | |
| 1063 case BLIST_TAG_SETTING: | |
| 1064 blist_parser_setting_value = g_strndup(text, text_len); | |
| 1065 break; | |
| 1066 default: | |
| 1067 break; | |
| 1068 } | |
| 1069 } | |
| 1070 | |
| 4439 | 1071 static void blist_error_handler(GMarkupParseContext *context, GError *error, |
| 1072 gpointer user_data) { | |
| 1073 blist_parser_error_occurred = TRUE; | |
| 1074 debug_printf("error parsing blist.xml: %s\n", error->message); | |
| 1075 } | |
| 1076 | |
| 4349 | 1077 static GMarkupParser blist_parser = { |
| 1078 blist_start_element_handler, | |
| 1079 blist_end_element_handler, | |
| 1080 blist_text_handler, | |
| 1081 NULL, | |
| 4439 | 1082 blist_error_handler |
| 4349 | 1083 }; |
| 1084 | |
| 1085 static gboolean gaim_blist_read(const char *filename) { | |
| 4441 | 1086 gchar *contents = NULL; |
| 4349 | 1087 gsize length; |
| 1088 GMarkupParseContext *context; | |
| 1089 GError *error = NULL; | |
| 4496 | 1090 |
| 1091 debug_printf("gaim_blist_read: reading %s\n", filename); | |
| 4349 | 1092 if(!g_file_get_contents(filename, &contents, &length, &error)) { |
| 1093 debug_printf("error reading blist: %s\n", error->message); | |
| 1094 g_error_free(error); | |
| 1095 return FALSE; | |
| 1096 } | |
| 1097 | |
| 1098 context = g_markup_parse_context_new(&blist_parser, 0, NULL, NULL); | |
| 1099 | |
| 1100 if(!g_markup_parse_context_parse(context, contents, length, NULL)) { | |
| 1101 g_markup_parse_context_free(context); | |
| 4441 | 1102 g_free(contents); |
| 4349 | 1103 return FALSE; |
| 1104 } | |
| 1105 | |
| 1106 if(!g_markup_parse_context_end_parse(context, NULL)) { | |
| 1107 debug_printf("error parsing blist\n"); | |
| 1108 g_markup_parse_context_free(context); | |
| 4441 | 1109 g_free(contents); |
| 4349 | 1110 return FALSE; |
| 1111 } | |
| 1112 | |
| 1113 g_markup_parse_context_free(context); | |
| 4441 | 1114 g_free(contents); |
| 1115 | |
| 4439 | 1116 if(blist_parser_error_occurred) |
| 1117 return FALSE; | |
| 1118 | |
| 4496 | 1119 debug_printf("gaim_blist_read: finished reading %s\n", filename); |
| 1120 | |
| 4349 | 1121 return TRUE; |
| 1122 } | |
| 1123 | |
| 1124 void gaim_blist_load() { | |
| 1125 GSList *accts; | |
| 1126 char *user_dir = gaim_user_dir(); | |
| 1127 char *filename; | |
| 1128 char *msg; | |
| 1129 | |
| 4497 | 1130 blist_safe_to_write = TRUE; |
| 1131 | |
| 1132 if(!user_dir) | |
| 4349 | 1133 return; |
| 1134 | |
| 1135 filename = g_build_filename(user_dir, "blist.xml", NULL); | |
| 1136 | |
| 1137 if(g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
| 1138 if(!gaim_blist_read(filename)) { | |
| 1139 msg = g_strdup_printf(_("An error was encountered parsing your " | |
| 1140 "buddy list. It has not been loaded.")); | |
| 1141 do_error_dialog(_("Buddy List Error"), msg, GAIM_ERROR); | |
| 1142 g_free(msg); | |
| 1143 } | |
| 4491 | 1144 } else if(g_slist_length(gaim_accounts)) { |
| 4349 | 1145 /* rob wants to inform the user that their buddy lists are |
| 1146 * being converted */ | |
| 1147 msg = g_strdup_printf(_("Gaim is converting your old buddy lists " | |
| 1148 "to a new format, which will now be located at %s"), | |
| 1149 filename); | |
| 1150 do_error_dialog(_("Converting Buddy List"), msg, GAIM_INFO); | |
| 1151 g_free(msg); | |
| 1152 | |
| 1153 /* now, let gtk actually display the dialog before we start anything */ | |
| 1154 while(gtk_events_pending()) | |
| 1155 gtk_main_iteration(); | |
| 1156 | |
| 1157 /* read in the old lists, then save to the new format */ | |
| 4491 | 1158 for(accts = gaim_accounts; accts; accts = accts->next) { |
| 4349 | 1159 do_import(accts->data, NULL); |
| 1160 } | |
| 1161 gaim_blist_save(); | |
| 1162 } | |
| 1163 | |
| 1164 g_free(filename); | |
| 1165 } | |
| 1166 | |
| 1167 static void blist_print_buddy_settings(gpointer key, gpointer data, | |
| 1168 gpointer user_data) { | |
| 1169 char *key_val = g_markup_escape_text(key, -1); | |
| 1170 char *data_val = g_markup_escape_text(data, -1); | |
| 1171 FILE *file = user_data; | |
| 1172 fprintf(file, "\t\t\t\t\t<setting name=\"%s\">%s</setting>\n", key_val, | |
| 1173 data_val); | |
| 1174 g_free(key_val); | |
| 1175 g_free(data_val); | |
| 1176 } | |
| 1177 | |
| 4491 | 1178 static void gaim_blist_write(FILE *file, struct gaim_account *exp_acct) { |
| 4687 | 1179 GSList *accounts, *buds; |
| 4785 | 1180 GaimBlistNode *gnode,*bnode; |
| 4687 | 1181 struct group *group; |
| 1182 struct buddy *bud; | |
| 4349 | 1183 fprintf(file, "<?xml version='1.0' encoding='UTF-8' ?>\n"); |
| 1184 fprintf(file, "<gaim version=\"1\">\n"); | |
| 1185 fprintf(file, "\t<blist>\n"); | |
| 1186 | |
| 4785 | 1187 for(gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
| 1188 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 1189 continue; | |
| 1190 group = (struct group *)gnode; | |
| 4687 | 1191 if(!exp_acct || gaim_group_on_account(group, exp_acct)) { |
| 1192 char *group_name = g_markup_escape_text(group->name, -1); | |
| 4349 | 1193 fprintf(file, "\t\t<group name=\"%s\">\n", group_name); |
| 4785 | 1194 for(bnode = gnode->child; bnode; bnode = bnode->next) { |
| 1195 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 1196 continue; | |
| 1197 bud = (struct buddy *)bnode; | |
| 4687 | 1198 if(!exp_acct || bud->account == exp_acct) { |
| 1199 char *bud_name = g_markup_escape_text(bud->name, -1); | |
| 4349 | 1200 char *bud_alias = NULL; |
| 4687 | 1201 char *acct_name = g_markup_escape_text(bud->account->username, -1); |
| 1202 if(bud->alias) | |
| 1203 bud_alias= g_markup_escape_text(bud->alias, -1); | |
| 4349 | 1204 fprintf(file, "\t\t\t<person name=\"%s\">\n", |
| 1205 bud_alias ? bud_alias : bud_name); | |
| 1206 fprintf(file, "\t\t\t\t<buddy protocol=\"%d\" " | |
| 4687 | 1207 "account=\"%s\">\n", bud->account->protocol, |
| 4349 | 1208 acct_name); |
| 1209 fprintf(file, "\t\t\t\t\t<name>%s</name>\n", bud_name); | |
| 1210 if(bud_alias) { | |
| 1211 fprintf(file, "\t\t\t\t\t<alias>%s</alias>\n", | |
| 1212 bud_alias); | |
| 1213 } | |
| 4687 | 1214 g_hash_table_foreach(bud->settings, |
| 4349 | 1215 blist_print_buddy_settings, file); |
| 1216 fprintf(file, "\t\t\t\t</buddy>\n"); | |
| 1217 fprintf(file, "\t\t\t</person>\n"); | |
| 1218 g_free(bud_name); | |
| 1219 g_free(bud_alias); | |
| 1220 g_free(acct_name); | |
| 1221 } | |
| 1222 } | |
| 1223 fprintf(file, "\t\t</group>\n"); | |
| 1224 g_free(group_name); | |
| 1225 } | |
| 1226 } | |
| 1227 | |
| 1228 fprintf(file, "\t</blist>\n"); | |
| 1229 fprintf(file, "\t<privacy>\n"); | |
| 1230 | |
| 4491 | 1231 for(accounts = gaim_accounts; accounts; accounts = accounts->next) { |
| 1232 struct gaim_account *account = accounts->data; | |
| 1233 char *acct_name = g_markup_escape_text(account->username, -1); | |
| 1234 if(!exp_acct || account == exp_acct) { | |
| 4349 | 1235 fprintf(file, "\t\t<account protocol=\"%d\" name=\"%s\" " |
| 4491 | 1236 "mode=\"%d\">\n", account->protocol, acct_name, account->permdeny); |
| 1237 for(buds = account->permit; buds; buds = buds->next) { | |
| 4349 | 1238 char *bud_name = g_markup_escape_text(buds->data, -1); |
| 1239 fprintf(file, "\t\t\t<permit>%s</permit>\n", bud_name); | |
| 1240 g_free(bud_name); | |
| 1241 } | |
| 4491 | 1242 for(buds = account->deny; buds; buds = buds->next) { |
| 4349 | 1243 char *bud_name = g_markup_escape_text(buds->data, -1); |
| 1244 fprintf(file, "\t\t\t<block>%s</block>\n", bud_name); | |
| 1245 g_free(bud_name); | |
| 1246 } | |
| 1247 fprintf(file, "\t\t</account>\n"); | |
| 1248 } | |
| 4491 | 1249 g_free(acct_name); |
| 4349 | 1250 } |
| 1251 | |
| 1252 fprintf(file, "\t</privacy>\n"); | |
| 1253 fprintf(file, "</gaim>\n"); | |
| 1254 } | |
| 1255 | |
| 1256 void gaim_blist_save() { | |
| 1257 FILE *file; | |
| 1258 char *user_dir = gaim_user_dir(); | |
| 1259 char *filename; | |
| 4891 | 1260 char *filename_real; |
| 4349 | 1261 |
| 1262 if(!user_dir) | |
| 1263 return; | |
| 4497 | 1264 if(!blist_safe_to_write) { |
| 1265 debug_printf("AHH!! tried to write the blist before we read it!\n"); | |
| 1266 return; | |
| 1267 } | |
| 1268 | |
| 4349 | 1269 file = fopen(user_dir, "r"); |
| 1270 if(!file) | |
| 1271 mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); | |
| 1272 else | |
| 1273 fclose(file); | |
| 1274 | |
| 4891 | 1275 filename = g_build_filename(user_dir, "blist.xml.save", NULL); |
| 4349 | 1276 |
| 1277 if((file = fopen(filename, "w"))) { | |
| 1278 gaim_blist_write(file, NULL); | |
| 1279 fclose(file); | |
| 1280 chmod(filename, S_IRUSR | S_IWUSR); | |
| 1281 } else { | |
| 1282 debug_printf("unable to write %s\n", filename); | |
| 1283 } | |
| 1284 | |
| 4891 | 1285 filename_real = g_build_filename(user_dir, "blist.xml", NULL); |
| 1286 | |
| 1287 if(rename(filename, filename_real) < 0) | |
| 1288 debug_printf("error renaming %s to %s\n", filename, filename_real); | |
| 1289 | |
| 1290 | |
| 4349 | 1291 g_free(filename); |
| 4891 | 1292 g_free(filename_real); |
| 4349 | 1293 } |
| 1294 | |
| 4491 | 1295 gboolean gaim_privacy_permit_add(struct gaim_account *account, const char *who) { |
| 1296 GSList *d = account->permit; | |
| 4349 | 1297 char *n = g_strdup(normalize(who)); |
| 1298 while(d) { | |
| 4793 | 1299 if(!gaim_utf8_strcasecmp(n, normalize(d->data))) |
| 4349 | 1300 break; |
| 1301 d = d->next; | |
| 1302 } | |
| 1303 g_free(n); | |
| 1304 if(!d) { | |
| 4491 | 1305 account->permit = g_slist_append(account->permit, g_strdup(who)); |
| 4349 | 1306 return TRUE; |
| 1307 } | |
| 1308 | |
| 1309 return FALSE; | |
| 1310 } | |
| 1311 | |
| 4491 | 1312 gboolean gaim_privacy_permit_remove(struct gaim_account *account, const char *who) { |
| 1313 GSList *d = account->permit; | |
| 4349 | 1314 char *n = g_strdup(normalize(who)); |
| 1315 while(d) { | |
| 4793 | 1316 if(!gaim_utf8_strcasecmp(n, normalize(d->data))) |
| 4349 | 1317 break; |
| 1318 d = d->next; | |
| 1319 } | |
| 1320 g_free(n); | |
| 1321 if(d) { | |
| 4491 | 1322 account->permit = g_slist_remove(account->permit, d->data); |
| 4349 | 1323 g_free(d->data); |
| 1324 return TRUE; | |
| 1325 } | |
| 1326 return FALSE; | |
| 1327 } | |
| 1328 | |
| 4491 | 1329 gboolean gaim_privacy_deny_add(struct gaim_account *account, const char *who) { |
| 1330 GSList *d = account->deny; | |
| 4349 | 1331 char *n = g_strdup(normalize(who)); |
| 1332 while(d) { | |
| 4793 | 1333 if(!gaim_utf8_strcasecmp(n, normalize(d->data))) |
| 4349 | 1334 break; |
| 1335 d = d->next; | |
| 1336 } | |
| 1337 g_free(n); | |
| 1338 if(!d) { | |
| 4491 | 1339 account->deny = g_slist_append(account->deny, g_strdup(who)); |
| 4349 | 1340 return TRUE; |
| 1341 } | |
| 1342 | |
| 1343 return FALSE; | |
| 1344 } | |
| 1345 | |
| 4491 | 1346 gboolean gaim_privacy_deny_remove(struct gaim_account *account, const char *who) { |
| 1347 GSList *d = account->deny; | |
| 4349 | 1348 char *n = g_strdup(normalize(who)); |
| 1349 while(d) { | |
| 4793 | 1350 if(!gaim_utf8_strcasecmp(n, normalize(d->data))) |
| 4349 | 1351 break; |
| 1352 d = d->next; | |
| 1353 } | |
| 1354 g_free(n); | |
| 1355 if(d) { | |
| 4491 | 1356 account->deny = g_slist_remove(account->deny, d->data); |
| 4349 | 1357 g_free(d->data); |
| 1358 return TRUE; | |
| 1359 } | |
| 1360 return FALSE; | |
| 1361 } | |
| 1362 | |
| 1363 void gaim_buddy_set_setting(struct buddy *b, const char *key, | |
| 1364 const char *value) { | |
| 1365 if(!b) | |
| 1366 return; | |
| 1367 g_hash_table_replace(b->settings, g_strdup(key), g_strdup(value)); | |
| 1368 } | |
| 1369 | |
| 1370 char *gaim_buddy_get_setting(struct buddy *b, const char *key) { | |
| 1371 if(!b) | |
| 1372 return NULL; | |
| 1373 return g_strdup(g_hash_table_lookup(b->settings, key)); | |
| 1374 } | |
| 4687 | 1375 |
| 1376 void gaim_set_blist_ui_ops(struct gaim_blist_ui_ops *ops) | |
| 1377 { | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
1378 blist_ui_ops = ops; |
| 4687 | 1379 } |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
1380 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
1381 struct gaim_blist_ui_ops * |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
1382 gaim_get_blist_ui_ops(void) |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
1383 { |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
1384 return blist_ui_ops; |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4690
diff
changeset
|
1385 } |
| 4701 | 1386 |
| 1387 int gaim_blist_get_group_size(struct group *group, gboolean offline) { | |
| 1388 GaimBlistNode *node; | |
| 1389 int count = 0; | |
| 1390 | |
| 1391 if(!group) | |
| 1392 return 0; | |
| 1393 | |
| 1394 for(node = group->node.child; node; node = node->next) { | |
| 1395 if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
| 1396 struct buddy *b = (struct buddy *)node; | |
| 1397 if(b->account->gc || offline) | |
| 1398 count++; | |
| 1399 } | |
| 1400 } | |
| 1401 | |
| 1402 return count; | |
| 1403 } | |
| 1404 | |
| 1405 int gaim_blist_get_group_online_count(struct group *group) { | |
| 1406 GaimBlistNode *node; | |
| 1407 int count = 0; | |
| 1408 | |
| 1409 if(!group) | |
| 1410 return 0; | |
| 1411 | |
| 1412 for(node = group->node.child; node; node = node->next) { | |
| 1413 if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
| 1414 struct buddy *b = (struct buddy *)node; | |
| 1415 if(b->present) | |
| 1416 count++; | |
| 1417 } | |
| 1418 } | |
| 1419 | |
| 1420 return count; | |
| 1421 } | |
| 1422 | |
| 1423 |
