Mercurial > pidgin
annotate src/blist.c @ 10167:cf45c2a6a7cf
[gaim-migrate @ 11254]
Some stuff - fix a crash removing chats from the buddy list, escape aliases
in buddy pounce popups and the state notifications from the state notify
plugin, and fix a corner-case crash in smiley theme sorting.
committer: Tailor Script <tailor@pidgin.im>
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Wed, 10 Nov 2004 17:08:32 +0000 |
parents | 72c9e9bb2c19 |
children | 35eae887271a |
rev | line source |
---|---|
5228 | 1 /* |
2 * gaim | |
3 * | |
8046 | 4 * Gaim is the legal property of its developers, whose names are too numerous |
5 * to list here. Please refer to the COPYRIGHT file distributed with this | |
6 * source distribution. | |
5228 | 7 * |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 * | |
22 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
23 #include "internal.h" |
5228 | 24 #include "blist.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
25 #include "conversation.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5855
diff
changeset
|
26 #include "debug.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" |
7132 | 34 #include "xmlnode.h" |
5228 | 35 |
36 #define PATHSIZE 1024 | |
37 | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
38 GaimBuddyList *gaimbuddylist = NULL; |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
39 static GaimBlistUiOps *blist_ui_ops = NULL; |
9285 | 40 static guint blist_save_timer = 0; |
5228 | 41 |
7693 | 42 struct gaim_blist_node_setting { |
43 enum { | |
44 GAIM_BLIST_NODE_SETTING_BOOL, | |
45 GAIM_BLIST_NODE_SETTING_INT, | |
46 GAIM_BLIST_NODE_SETTING_STRING | |
47 } type; | |
48 union { | |
49 gboolean boolean; | |
50 int integer; | |
51 char *string; | |
52 } value; | |
53 }; | |
54 | |
55 | |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
56 |
5228 | 57 /***************************************************************************** |
58 * Private Utility functions * | |
59 *****************************************************************************/ | |
60 static GaimBlistNode *gaim_blist_get_last_sibling(GaimBlistNode *node) | |
61 { | |
62 GaimBlistNode *n = node; | |
63 if (!n) | |
64 return NULL; | |
65 while (n->next) | |
66 n = n->next; | |
67 return n; | |
68 } | |
6695 | 69 |
5228 | 70 static GaimBlistNode *gaim_blist_get_last_child(GaimBlistNode *node) |
71 { | |
72 if (!node) | |
73 return NULL; | |
74 return gaim_blist_get_last_sibling(node->child); | |
75 } | |
76 | |
5247 | 77 struct _gaim_hbuddy { |
78 char *name; | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
79 GaimAccount *account; |
5758 | 80 GaimBlistNode *group; |
5247 | 81 }; |
82 | |
9285 | 83 static guint _gaim_blist_hbuddy_hash(struct _gaim_hbuddy *hb) |
5247 | 84 { |
85 return g_str_hash(hb->name); | |
86 } | |
87 | |
9285 | 88 static guint _gaim_blist_hbuddy_equal(struct _gaim_hbuddy *hb1, struct _gaim_hbuddy *hb2) |
5247 | 89 { |
5758 | 90 return ((!strcmp(hb1->name, hb2->name)) && hb1->account == hb2->account && hb1->group == hb2->group); |
5247 | 91 } |
92 | |
6742 | 93 static void _gaim_blist_hbuddy_free_key(struct _gaim_hbuddy *hb) |
94 { | |
95 g_free(hb->name); | |
96 g_free(hb); | |
97 } | |
98 | |
9285 | 99 static void blist_pref_cb(const char *name, GaimPrefType type, gpointer value, gpointer data) |
6006 | 100 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
101 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6695 | 102 GaimBlistNode *gnode, *cnode, *bnode; |
6012 | 103 |
9285 | 104 if (!ops || !ops->update) |
6012 | 105 return; |
106 | |
9285 | 107 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
108 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
6012 | 109 continue; |
9285 | 110 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
111 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
112 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
113 if (!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
6695 | 114 continue; |
115 ops->update(gaimbuddylist, bnode); | |
116 } | |
9285 | 117 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
6695 | 118 ops->update(gaimbuddylist, cnode); |
119 } | |
6012 | 120 } |
121 } | |
6006 | 122 } |
123 | |
9949 | 124 void gaim_contact_compute_priority_buddy(GaimContact *contact) |
6843 | 125 { |
126 GaimBlistNode *bnode; | |
9949 | 127 GaimBuddy *new_priority = NULL; |
9285 | 128 |
129 g_return_if_fail(contact != NULL); | |
130 | |
6870 | 131 contact->priority = NULL; |
9949 | 132 for (bnode = ((GaimBlistNode*)contact)->child; |
133 bnode != NULL; | |
134 bnode = bnode->next) | |
135 { | |
6843 | 136 GaimBuddy *buddy; |
9949 | 137 GaimPresence *presence; |
7420 | 138 |
9285 | 139 if (!GAIM_BLIST_NODE_IS_BUDDY(bnode)) |
6843 | 140 continue; |
9949 | 141 |
6843 | 142 buddy = (GaimBuddy*)bnode; |
9949 | 143 |
9285 | 144 if (!gaim_account_is_connected(buddy->account)) |
6843 | 145 continue; |
9949 | 146 if (new_priority == NULL) |
147 new_priority = buddy; | |
148 else | |
149 { | |
150 int cmp; | |
151 | |
152 presence = gaim_buddy_get_presence(buddy); | |
153 | |
154 cmp = gaim_presence_compare(gaim_buddy_get_presence(new_priority), | |
155 gaim_buddy_get_presence(buddy)); | |
156 | |
157 if (cmp > 0 || (cmp == 0 && | |
158 gaim_prefs_get_bool("/core/contact/last_match"))) | |
159 { | |
160 new_priority = buddy; | |
161 } | |
162 } | |
6843 | 163 } |
9949 | 164 |
165 contact->priority = new_priority; | |
6843 | 166 } |
167 | |
9285 | 168 static gboolean blist_save_callback(gpointer data) |
169 { | |
170 gaim_blist_sync(); | |
171 blist_save_timer = 0; | |
172 return FALSE; | |
173 } | |
174 | |
9741 | 175 static void schedule_blist_save() |
9285 | 176 { |
177 if (blist_save_timer != 0) | |
178 gaim_timeout_remove(blist_save_timer); | |
179 blist_save_timer = gaim_timeout_add(1000, blist_save_callback, NULL); | |
180 } | |
181 | |
6843 | 182 |
5228 | 183 /***************************************************************************** |
184 * Public API functions * | |
185 *****************************************************************************/ | |
186 | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
187 GaimBuddyList *gaim_blist_new() |
5228 | 188 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
189 GaimBuddyList *gbl = g_new0(GaimBuddyList, 1); |
5228 | 190 |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
191 gbl->ui_ops = gaim_blist_get_ui_ops(); |
5228 | 192 |
6742 | 193 gbl->buddies = g_hash_table_new_full((GHashFunc)_gaim_blist_hbuddy_hash, |
194 (GEqualFunc)_gaim_blist_hbuddy_equal, | |
195 (GDestroyNotify)_gaim_blist_hbuddy_free_key, NULL); | |
5247 | 196 |
5228 | 197 if (gbl->ui_ops != NULL && gbl->ui_ops->new_list != NULL) |
198 gbl->ui_ops->new_list(gbl); | |
199 | |
10087 | 200 gaim_prefs_connect_callback(gaim_blist_get_handle(), "/core/buddies/use_server_alias", |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
201 blist_pref_cb, NULL); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
202 |
5228 | 203 return gbl; |
204 } | |
205 | |
206 void | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
207 gaim_set_blist(GaimBuddyList *list) |
5228 | 208 { |
209 gaimbuddylist = list; | |
210 } | |
211 | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
212 GaimBuddyList * |
9285 | 213 gaim_get_blist() |
5228 | 214 { |
215 return gaimbuddylist; | |
216 } | |
217 | |
9285 | 218 void gaim_blist_show() |
5228 | 219 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
220 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 221 |
222 if (ops && ops->show) | |
5228 | 223 ops->show(gaimbuddylist); |
224 } | |
225 | |
226 void gaim_blist_destroy() | |
227 { | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
228 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 229 |
8259
4f9f68ab8770
[gaim-migrate @ 8982]
Christian Hammond <chipx86@chipx86.com>
parents:
8200
diff
changeset
|
230 gaim_debug(GAIM_DEBUG_INFO, "blist", "Destroying\n"); |
9285 | 231 |
232 if (ops && ops->destroy) | |
5228 | 233 ops->destroy(gaimbuddylist); |
234 } | |
235 | |
9285 | 236 void gaim_blist_set_visible(gboolean show) |
5228 | 237 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
238 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 239 |
240 if (ops && ops->set_visible) | |
5228 | 241 ops->set_visible(gaimbuddylist, show); |
242 } | |
243 | |
9285 | 244 static gboolean presence_update_timeout_cb(GaimBuddy *buddy) |
245 { | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
246 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
247 GaimConversation *conv; |
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
248 |
9285 | 249 g_return_val_if_fail(buddy != NULL, FALSE); |
250 | |
251 if (buddy->present == GAIM_BUDDY_SIGNING_ON) { | |
5228 | 252 buddy->present = GAIM_BUDDY_ONLINE; |
9285 | 253 } else if (buddy->present == GAIM_BUDDY_SIGNING_OFF) { |
5228 | 254 buddy->present = GAIM_BUDDY_OFFLINE; |
6860 | 255 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online--; |
9285 | 256 if (((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 0) |
6860 | 257 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online--; |
5228 | 258 } |
259 | |
260 buddy->timer = 0; | |
261 | |
9285 | 262 if (ops && ops->update) |
5228 | 263 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); |
264 | |
9285 | 265 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); |
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
266 if (conv) { |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
267 if (buddy->present == GAIM_BUDDY_ONLINE) |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
268 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_ONLINE); |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
269 else if (buddy->present == GAIM_BUDDY_OFFLINE) |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
270 gaim_conversation_update(conv, GAIM_CONV_ACCOUNT_OFFLINE); |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
271 } |
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
272 |
5228 | 273 return FALSE; |
274 } | |
275 | |
10052 | 276 void |
277 gaim_blist_update_buddy_status(GaimBuddy *buddy, GaimStatus *old_status) | |
9285 | 278 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
279 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
10052 | 280 GaimPresence *presence; |
281 GaimStatus *status; | |
9285 | 282 gboolean did_something = FALSE; |
283 | |
284 g_return_if_fail(buddy != NULL); | |
5228 | 285 |
10052 | 286 presence = gaim_buddy_get_presence(buddy); |
287 status = gaim_presence_get_active_status(presence); | |
288 | |
289 gaim_debug_info("blist", "Updating buddy status\n"); | |
290 | |
291 if (gaim_status_is_online(status) && | |
292 !gaim_status_is_online(old_status)) { | |
6901 | 293 int old_present = buddy->present; |
10052 | 294 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
295 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-on", buddy); |
9285 | 296 if (old_present != GAIM_BUDDY_SIGNING_OFF) { |
6901 | 297 ((GaimContact*)((GaimBlistNode*)buddy)->parent)->online++; |
9285 | 298 if (((GaimContact*)((GaimBlistNode*)buddy)->parent)->online == 1) |
6901 | 299 ((GaimGroup *)((GaimBlistNode *)buddy)->parent->parent)->online++; |
300 } | |
10052 | 301 if (buddy->timer > 0) |
302 gaim_timeout_remove(buddy->timer); | |
303 buddy->timer = gaim_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
304 did_something = TRUE; | |
305 | |
306 } else if (!gaim_status_is_online(status) && | |
307 gaim_status_is_online(old_status)) { | |
5228 | 308 buddy->present = GAIM_BUDDY_SIGNING_OFF; |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
309 gaim_signal_emit(gaim_blist_get_handle(), "buddy-signed-off", buddy); |
10052 | 310 if (buddy->timer > 0) |
311 gaim_timeout_remove(buddy->timer); | |
312 buddy->timer = gaim_timeout_add(10000, (GSourceFunc)presence_update_timeout_cb, buddy); | |
9285 | 313 did_something = TRUE; |
10052 | 314 |
315 } else if (gaim_status_is_available(status) && | |
316 !gaim_status_is_available(old_status)) { | |
317 gaim_signal_emit(gaim_blist_get_handle(), "buddy-back", buddy); | |
318 did_something = TRUE; | |
319 | |
320 } else if (!gaim_status_is_available(status) && | |
321 gaim_status_is_available(old_status)) { | |
322 gaim_signal_emit(gaim_blist_get_handle(), "buddy-away", buddy); | |
323 did_something = TRUE; | |
324 | |
5228 | 325 } |
326 | |
9285 | 327 if (did_something) { |
6961 | 328 gaim_contact_compute_priority_buddy(gaim_buddy_get_contact(buddy)); |
9285 | 329 if (ops && ops->update) |
330 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
5228 | 331 } |
332 } | |
333 | |
9285 | 334 void gaim_blist_update_buddy_signon(GaimBuddy *buddy, time_t signon) |
7950 | 335 { |
336 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; | |
9285 | 337 |
338 g_return_if_fail(buddy != NULL); | |
339 | |
340 if (buddy->signon == signon) | |
7950 | 341 return; |
342 | |
343 buddy->signon = signon; | |
9285 | 344 |
345 if (ops && ops->update) | |
346 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
7950 | 347 } |
5228 | 348 |
9285 | 349 void gaim_blist_update_buddy_icon(GaimBuddy *buddy) |
5228 | 350 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
351 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 352 |
353 g_return_if_fail(buddy != NULL); | |
354 | |
355 if (ops && ops->update) | |
356 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
357 } | |
358 | |
359 /* | |
360 * XXX - Maybe remove the call to this from server.c and call it | |
361 * from oscar.c and toc.c instead? | |
362 */ | |
363 void gaim_blist_rename_buddy(GaimBuddy *buddy, const char *name) | |
364 { | |
365 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; | |
366 struct _gaim_hbuddy *hb; | |
367 | |
368 g_return_if_fail(buddy != NULL); | |
369 | |
370 hb = g_new(struct _gaim_hbuddy, 1); | |
8675 | 371 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
372 hb->account = buddy->account; | |
373 hb->group = ((GaimBlistNode *)buddy)->parent->parent; | |
374 g_hash_table_remove(gaimbuddylist->buddies, hb); | |
375 | |
376 g_free(hb->name); | |
377 hb->name = g_strdup(gaim_normalize(buddy->account, name)); | |
378 g_hash_table_replace(gaimbuddylist->buddies, hb, buddy); | |
379 | |
5634 | 380 g_free(buddy->name); |
5228 | 381 buddy->name = g_strdup(name); |
9285 | 382 |
383 schedule_blist_save(); | |
384 | |
385 if (ops && ops->update) | |
386 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
5228 | 387 } |
5234 | 388 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
389 void gaim_blist_alias_chat(GaimChat *chat, const char *alias) |
5234 | 390 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
391 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
5234 | 392 |
9285 | 393 g_return_if_fail(chat != NULL); |
394 | |
5237 | 395 g_free(chat->alias); |
9285 | 396 if ((alias != NULL) && (*alias != '\0')) |
5237 | 397 chat->alias = g_strdup(alias); |
398 else | |
399 chat->alias = NULL; | |
400 | |
9285 | 401 schedule_blist_save(); |
402 | |
403 if (ops && ops->update) | |
404 ops->update(gaimbuddylist, (GaimBlistNode *)chat); | |
5234 | 405 } |
406 | |
9285 | 407 void gaim_blist_alias_buddy(GaimBuddy *buddy, const char *alias) |
5228 | 408 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
409 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5634
diff
changeset
|
410 GaimConversation *conv; |
5228 | 411 |
9285 | 412 g_return_if_fail(buddy != NULL); |
413 | |
5228 | 414 g_free(buddy->alias); |
9285 | 415 if ((alias != NULL) && (*alias != '\0')) |
5228 | 416 buddy->alias = g_strdup(alias); |
417 else | |
418 buddy->alias = NULL; | |
419 | |
9285 | 420 schedule_blist_save(); |
421 | |
422 if (ops && ops->update) | |
423 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
5228 | 424 |
425 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); | |
426 if (conv) | |
427 gaim_conversation_autoset_title(conv); | |
428 } | |
429 | |
9285 | 430 void gaim_blist_server_alias_buddy(GaimBuddy *buddy, const char *alias) |
6058 | 431 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
432 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6058 | 433 GaimConversation *conv; |
434 | |
9285 | 435 g_return_if_fail(buddy != NULL); |
436 | |
6058 | 437 g_free(buddy->server_alias); |
9285 | 438 if ((alias != NULL) && (*alias != '\0') && g_utf8_validate(alias, -1, NULL)) |
6058 | 439 buddy->server_alias = g_strdup(alias); |
440 else | |
441 buddy->server_alias = NULL; | |
442 | |
9285 | 443 schedule_blist_save(); |
444 | |
445 if (ops && ops->update) | |
446 ops->update(gaimbuddylist, (GaimBlistNode *)buddy); | |
6058 | 447 |
448 conv = gaim_find_conversation_with_account(buddy->name, buddy->account); | |
449 if (conv) | |
450 gaim_conversation_autoset_title(conv); | |
451 } | |
452 | |
9285 | 453 /* |
454 * XXX - If merging, prompt the user if they want to merge. | |
455 */ | |
456 void gaim_blist_rename_group(GaimGroup *source, const char *new_name) | |
5228 | 457 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
458 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 459 GaimGroup *dest; |
460 gchar *old_name; | |
461 GList *moved_buddies = NULL; | |
5346 | 462 GSList *accts; |
463 | |
9285 | 464 g_return_if_fail(source != NULL); |
465 g_return_if_fail(new_name != NULL); | |
466 | |
467 if (*new_name == '\0' || !strcmp(new_name, source->name)) | |
5346 | 468 return; |
9285 | 469 |
470 dest = gaim_find_group(new_name); | |
471 if (dest != NULL) { | |
472 /* We're merging two groups */ | |
473 GaimBlistNode *prev, *child, *next; | |
474 | |
475 prev = gaim_blist_get_last_child((GaimBlistNode*)dest); | |
476 child = ((GaimBlistNode*)source)->child; | |
477 | |
478 /* | |
479 * XXX - This seems like a dumb way to do this... why not just | |
480 * append all children from the old group to the end of the new | |
481 * one? PRPLs might be expecting to receive an add_buddy() for | |
482 * each moved buddy... | |
483 */ | |
484 while (child) | |
5346 | 485 { |
486 next = child->next; | |
9285 | 487 if (GAIM_BLIST_NODE_IS_CONTACT(child)) { |
6695 | 488 GaimBlistNode *bnode; |
9285 | 489 gaim_blist_add_contact((GaimContact *)child, dest, prev); |
490 for (bnode = child->child; bnode != NULL; bnode = bnode->next) { | |
491 gaim_blist_add_buddy((GaimBuddy *)bnode, (GaimContact *)child, | |
6695 | 492 NULL, bnode->prev); |
9285 | 493 moved_buddies = g_list_append(moved_buddies, bnode); |
494 } | |
5346 | 495 prev = child; |
9285 | 496 } else if (GAIM_BLIST_NODE_IS_CHAT(child)) { |
497 gaim_blist_add_chat((GaimChat *)child, dest, prev); | |
5346 | 498 prev = child; |
499 } else { | |
500 gaim_debug(GAIM_DEBUG_ERROR, "blist", | |
9285 | 501 "Unknown child type in group %s\n", source->name); |
5346 | 502 } |
503 child = next; | |
504 } | |
9285 | 505 |
506 /* Make a copy of the old group name and then delete the old group */ | |
507 old_name = g_strdup(source->name); | |
508 gaim_blist_remove_group(source); | |
5346 | 509 } else { |
9285 | 510 /* A simple rename */ |
511 GaimBlistNode *cnode, *bnode; | |
512 | |
513 /* Build a GList of all buddies in this group */ | |
514 for (cnode = ((GaimBlistNode *)source)->child; cnode != NULL; cnode = cnode->next) { | |
515 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
516 for (bnode = cnode->child; bnode != NULL; bnode = bnode->next) | |
517 moved_buddies = g_list_append(moved_buddies, bnode); | |
5346 | 518 } |
9285 | 519 |
520 old_name = source->name; | |
521 source->name = g_strdup(new_name); | |
522 | |
5346 | 523 } |
9285 | 524 |
525 /* Save our changes */ | |
526 schedule_blist_save(); | |
527 | |
528 /* Update the UI */ | |
529 if (ops && ops->update) | |
530 ops->update(gaimbuddylist, (GaimBlistNode*)source); | |
531 | |
532 /* Notify all PRPLs */ | |
533 for (accts = gaim_group_get_accounts(source); accts; accts = g_slist_remove(accts, accts->data)) { | |
534 GaimAccount *account = accts->data; | |
535 serv_rename_group(account->gc, old_name, source, moved_buddies); | |
536 } | |
537 g_list_free(moved_buddies); | |
538 g_free(old_name); | |
5228 | 539 } |
5234 | 540 |
9285 | 541 static void gaim_blist_node_initialize_settings(GaimBlistNode *node); |
7693 | 542 |
7125 | 543 GaimChat *gaim_chat_new(GaimAccount *account, const char *alias, GHashTable *components) |
5234 | 544 { |
9285 | 545 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
546 GaimChat *chat; |
9285 | 547 |
548 g_return_val_if_fail(account != NULL, FALSE); | |
549 g_return_val_if_fail(components != NULL, FALSE); | |
5234 | 550 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
551 chat = g_new0(GaimChat, 1); |
5234 | 552 chat->account = account; |
9285 | 553 if ((alias != NULL) && (*alias != '\0')) |
5237 | 554 chat->alias = g_strdup(alias); |
5234 | 555 chat->components = components; |
9285 | 556 gaim_blist_node_initialize_settings((GaimBlistNode *)chat); |
557 ((GaimBlistNode *)chat)->type = GAIM_BLIST_CHAT_NODE; | |
5234 | 558 |
559 if (ops != NULL && ops->new_node != NULL) | |
560 ops->new_node((GaimBlistNode *)chat); | |
561 | |
562 return chat; | |
563 } | |
564 | |
7125 | 565 char *gaim_chat_get_display_name(GaimChat *chat) |
6034 | 566 { |
567 char *name; | |
568 | |
9285 | 569 g_return_val_if_fail(chat != NULL, FALSE); |
570 | |
571 if (chat->alias != NULL) { | |
6034 | 572 name = g_strdup(chat->alias); |
9285 | 573 } else { |
6034 | 574 GList *parts; |
575 GaimPlugin *prpl; | |
576 GaimPluginProtocolInfo *prpl_info; | |
577 struct proto_chat_entry *pce; | |
578 | |
7956 | 579 prpl = gaim_find_prpl(gaim_account_get_protocol_id(chat->account)); |
6034 | 580 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); |
581 | |
582 parts = prpl_info->chat_info(chat->account->gc); | |
583 | |
584 pce = parts->data; | |
585 name = g_markup_escape_text(g_hash_table_lookup(chat->components, | |
586 pce->identifier), -1); | |
587 g_list_free(parts); | |
588 } | |
589 | |
590 return name; | |
591 } | |
592 | |
6695 | 593 GaimBuddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias) |
5228 | 594 { |
9285 | 595 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
596 GaimBuddy *buddy; | |
597 | |
598 g_return_val_if_fail(account != NULL, FALSE); | |
599 g_return_val_if_fail(screenname != NULL, FALSE); | |
600 | |
601 buddy = g_new0(GaimBuddy, 1); | |
9949 | 602 buddy->account = account; |
603 buddy->name = g_strdup(screenname); | |
604 buddy->alias = g_strdup(alias); | |
605 buddy->presence = gaim_presence_new_for_buddy(buddy); | |
606 | |
10052 | 607 gaim_presence_set_status_active(buddy->presence, "offline", TRUE); |
608 | |
9285 | 609 gaim_blist_node_initialize_settings((GaimBlistNode *)buddy); |
610 ((GaimBlistNode *)buddy)->type = GAIM_BLIST_BUDDY_NODE; | |
611 | |
612 if (ops && ops->new_node) | |
613 ops->new_node((GaimBlistNode *)buddy); | |
614 | |
615 return buddy; | |
5228 | 616 } |
5634 | 617 |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
618 void |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
619 gaim_buddy_set_icon(GaimBuddy *buddy, GaimBuddyIcon *icon) |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
620 { |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
621 g_return_if_fail(buddy != NULL); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
622 |
9261
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
623 if (buddy->icon != icon) |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
624 { |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
625 if (buddy->icon != NULL) |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
626 gaim_buddy_icon_unref(buddy->icon); |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
627 |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
628 buddy->icon = (icon == NULL ? NULL : gaim_buddy_icon_ref(icon)); |
77fdeb4c459f
[gaim-migrate @ 10060]
Christian Hammond <chipx86@chipx86.com>
parents:
9153
diff
changeset
|
629 } |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
630 |
9324 | 631 if (buddy->icon) |
632 gaim_buddy_icon_cache(icon, buddy); | |
633 else | |
634 gaim_blist_node_remove_setting((GaimBlistNode *)buddy, "buddy_icon"); | |
9299 | 635 |
636 schedule_blist_save(); | |
9926 | 637 |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
638 gaim_blist_update_buddy_icon(buddy); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
639 } |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
640 |
10037
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
641 GaimAccount * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
642 gaim_buddy_get_account(const GaimBuddy *buddy) |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
643 { |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
644 g_return_val_if_fail(buddy != NULL, NULL); |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
645 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
646 return buddy->account; |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
647 } |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
648 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
649 const char * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
650 gaim_buddy_get_name(const GaimBuddy *buddy) |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
651 { |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
652 g_return_val_if_fail(buddy != NULL, NULL); |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
653 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
654 return buddy->name; |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
655 } |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10001
diff
changeset
|
656 |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
657 GaimBuddyIcon * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
658 gaim_buddy_get_icon(const GaimBuddy *buddy) |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
659 { |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
660 g_return_val_if_fail(buddy != NULL, NULL); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
661 |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
662 return buddy->icon; |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
663 } |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
664 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
665 void gaim_blist_add_chat(GaimChat *chat, GaimGroup *group, GaimBlistNode *node) |
5234 | 666 { |
9285 | 667 GaimBlistNode *cnode = (GaimBlistNode*)chat; |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
668 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6774 | 669 |
670 g_return_if_fail(chat != NULL); | |
9285 | 671 g_return_if_fail(GAIM_BLIST_NODE_IS_CHAT((GaimBlistNode *)chat)); |
672 | |
673 if (node == NULL) { | |
674 if (group == NULL) { | |
675 group = gaim_group_new(_("Chats")); | |
676 gaim_blist_add_group(group, | |
5634 | 677 gaim_blist_get_last_sibling(gaimbuddylist->root)); |
5234 | 678 } |
679 } else { | |
9285 | 680 group = (GaimGroup*)node->parent; |
5234 | 681 } |
682 | |
683 /* if we're moving to overtop of ourselves, do nothing */ | |
9285 | 684 if (cnode == node) |
5234 | 685 return; |
686 | |
687 if (cnode->parent) { | |
688 /* This chat was already in the list and is | |
689 * being moved. | |
690 */ | |
6695 | 691 ((GaimGroup *)cnode->parent)->totalsize--; |
5855 | 692 if (gaim_account_is_connected(chat->account)) { |
6695 | 693 ((GaimGroup *)cnode->parent)->online--; |
694 ((GaimGroup *)cnode->parent)->currentsize--; | |
5287 | 695 } |
9285 | 696 if (cnode->next) |
5234 | 697 cnode->next->prev = cnode->prev; |
9285 | 698 if (cnode->prev) |
5234 | 699 cnode->prev->next = cnode->next; |
9285 | 700 if (cnode->parent->child == cnode) |
5234 | 701 cnode->parent->child = cnode->next; |
702 | |
703 ops->remove(gaimbuddylist, cnode); | |
704 | |
9285 | 705 schedule_blist_save(); |
5234 | 706 } |
707 | |
9285 | 708 if (node != NULL) { |
709 if (node->next) | |
710 node->next->prev = cnode; | |
711 cnode->next = node->next; | |
712 cnode->prev = node; | |
713 cnode->parent = node->parent; | |
714 node->next = cnode; | |
715 ((GaimGroup *)node->parent)->totalsize++; | |
5855 | 716 if (gaim_account_is_connected(chat->account)) { |
9285 | 717 ((GaimGroup *)node->parent)->online++; |
718 ((GaimGroup *)node->parent)->currentsize++; | |
5287 | 719 } |
5234 | 720 } else { |
9285 | 721 if (((GaimBlistNode *)group)->child) |
722 ((GaimBlistNode *)group)->child->prev = cnode; | |
723 cnode->next = ((GaimBlistNode *)group)->child; | |
5634 | 724 cnode->prev = NULL; |
9285 | 725 ((GaimBlistNode *)group)->child = cnode; |
726 cnode->parent = (GaimBlistNode *)group; | |
727 group->totalsize++; | |
5855 | 728 if (gaim_account_is_connected(chat->account)) { |
9285 | 729 group->online++; |
730 group->currentsize++; | |
5287 | 731 } |
5234 | 732 } |
733 | |
9285 | 734 schedule_blist_save(); |
735 | |
736 if (ops && ops->update) | |
737 ops->update(gaimbuddylist, (GaimBlistNode *)cnode); | |
5234 | 738 } |
739 | |
7879 | 740 void gaim_blist_add_buddy(GaimBuddy *buddy, GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
5228 | 741 { |
6695 | 742 GaimBlistNode *cnode, *bnode; |
743 GaimGroup *g; | |
744 GaimContact *c; | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
745 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
5247 | 746 struct _gaim_hbuddy *hb; |
6695 | 747 |
748 g_return_if_fail(buddy != NULL); | |
6774 | 749 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY((GaimBlistNode*)buddy)); |
6695 | 750 |
751 bnode = (GaimBlistNode *)buddy; | |
5228 | 752 |
6695 | 753 /* if we're moving to overtop of ourselves, do nothing */ |
9285 | 754 if (bnode == node || (!node && bnode->parent && |
6695 | 755 contact && bnode->parent == (GaimBlistNode*)contact |
756 && bnode == bnode->parent->child)) | |
757 return; | |
758 | |
9285 | 759 if (node && GAIM_BLIST_NODE_IS_BUDDY(node)) { |
6695 | 760 c = (GaimContact*)node->parent; |
761 g = (GaimGroup*)node->parent->parent; | |
9285 | 762 } else if (contact) { |
6695 | 763 c = contact; |
9285 | 764 g = (GaimGroup *)((GaimBlistNode *)c)->parent; |
765 } else { | |
766 if (group) { | |
6695 | 767 g = group; |
768 } else { | |
5228 | 769 g = gaim_group_new(_("Buddies")); |
5634 | 770 gaim_blist_add_group(g, |
771 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
5228 | 772 } |
6695 | 773 c = gaim_contact_new(); |
774 gaim_blist_add_contact(c, g, | |
775 gaim_blist_get_last_child((GaimBlistNode*)g)); | |
5228 | 776 } |
777 | |
6695 | 778 cnode = (GaimBlistNode *)c; |
5228 | 779 |
9285 | 780 if (bnode->parent) { |
781 if (GAIM_BUDDY_IS_ONLINE(buddy)) { | |
6695 | 782 ((GaimContact*)bnode->parent)->online--; |
9285 | 783 if (((GaimContact*)bnode->parent)->online == 0) |
6695 | 784 ((GaimGroup*)bnode->parent->parent)->online--; |
785 } | |
9285 | 786 if (gaim_account_is_connected(buddy->account)) { |
6695 | 787 ((GaimContact*)bnode->parent)->currentsize--; |
9285 | 788 if (((GaimContact*)bnode->parent)->currentsize == 0) |
6695 | 789 ((GaimGroup*)bnode->parent->parent)->currentsize--; |
790 } | |
791 ((GaimContact*)bnode->parent)->totalsize--; | |
792 /* the group totalsize will be taken care of by remove_contact below */ | |
793 | |
9285 | 794 if (bnode->parent->parent != (GaimBlistNode*)g) |
6695 | 795 serv_move_buddy(buddy, (GaimGroup *)bnode->parent->parent, g); |
5277 | 796 |
9285 | 797 if (bnode->next) |
5228 | 798 bnode->next->prev = bnode->prev; |
9285 | 799 if (bnode->prev) |
5228 | 800 bnode->prev->next = bnode->next; |
9285 | 801 if (bnode->parent->child == bnode) |
5228 | 802 bnode->parent->child = bnode->next; |
803 | |
804 ops->remove(gaimbuddylist, bnode); | |
805 | |
9285 | 806 schedule_blist_save(); |
807 | |
808 if (bnode->parent->parent != (GaimBlistNode*)g) { | |
6742 | 809 hb = g_new(struct _gaim_hbuddy, 1); |
7261 | 810 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
6742 | 811 hb->account = buddy->account; |
812 hb->group = bnode->parent->parent; | |
6775 | 813 g_hash_table_remove(gaimbuddylist->buddies, hb); |
7162 | 814 g_free(hb->name); |
6742 | 815 g_free(hb); |
816 } | |
6794 | 817 |
9285 | 818 if (!bnode->parent->child) { |
6794 | 819 gaim_blist_remove_contact((GaimContact*)bnode->parent); |
7003 | 820 } else { |
821 gaim_contact_compute_priority_buddy((GaimContact*)bnode->parent); | |
822 ops->update(gaimbuddylist, bnode->parent); | |
823 } | |
5228 | 824 } |
825 | |
9285 | 826 if (node && GAIM_BLIST_NODE_IS_BUDDY(node)) { |
827 if (node->next) | |
6695 | 828 node->next->prev = bnode; |
829 bnode->next = node->next; | |
830 bnode->prev = node; | |
831 bnode->parent = node->parent; | |
832 node->next = bnode; | |
5228 | 833 } else { |
9285 | 834 if (cnode->child) |
6695 | 835 cnode->child->prev = bnode; |
836 bnode->prev = NULL; | |
837 bnode->next = cnode->child; | |
838 cnode->child = bnode; | |
839 bnode->parent = cnode; | |
5228 | 840 } |
841 | |
9285 | 842 if (GAIM_BUDDY_IS_ONLINE(buddy)) { |
6695 | 843 ((GaimContact*)bnode->parent)->online++; |
9285 | 844 if (((GaimContact*)bnode->parent)->online == 1) |
6695 | 845 ((GaimGroup*)bnode->parent->parent)->online++; |
846 } | |
9285 | 847 if (gaim_account_is_connected(buddy->account)) { |
6695 | 848 ((GaimContact*)bnode->parent)->currentsize++; |
9285 | 849 if (((GaimContact*)bnode->parent)->currentsize == 1) |
6695 | 850 ((GaimGroup*)bnode->parent->parent)->currentsize++; |
851 } | |
852 ((GaimContact*)bnode->parent)->totalsize++; | |
853 | |
6742 | 854 hb = g_new(struct _gaim_hbuddy, 1); |
7261 | 855 hb->name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
5247 | 856 hb->account = buddy->account; |
6695 | 857 hb->group = ((GaimBlistNode*)buddy)->parent->parent; |
5247 | 858 |
6742 | 859 g_hash_table_replace(gaimbuddylist->buddies, hb, buddy); |
5247 | 860 |
6843 | 861 gaim_contact_compute_priority_buddy(gaim_buddy_get_contact(buddy)); |
9285 | 862 |
863 schedule_blist_save(); | |
864 | |
865 if (ops && ops->update) | |
5228 | 866 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); |
867 } | |
868 | |
6695 | 869 GaimContact *gaim_contact_new() |
5228 | 870 { |
9285 | 871 GaimBlistUiOps *ops = gaim_blist_get_ui_ops(); |
872 | |
873 GaimContact *contact = g_new0(GaimContact, 1); | |
874 contact->totalsize = 0; | |
875 contact->currentsize = 0; | |
876 contact->online = 0; | |
877 gaim_blist_node_initialize_settings((GaimBlistNode *)contact); | |
878 ((GaimBlistNode *)contact)->type = GAIM_BLIST_CONTACT_NODE; | |
879 | |
880 if (ops && ops->new_node) | |
881 ops->new_node((GaimBlistNode *)contact); | |
882 | |
883 return contact; | |
6695 | 884 } |
885 | |
9285 | 886 void gaim_contact_set_alias(GaimContact *contact, const char *alias) |
6755 | 887 { |
7245 | 888 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
889 | |
6755 | 890 g_return_if_fail(contact != NULL); |
891 | |
9285 | 892 if (contact->alias != NULL) |
6755 | 893 g_free(contact->alias); |
894 | |
9285 | 895 if ((alias != NULL) && (*alias != '\0')) |
7245 | 896 contact->alias = g_strdup(alias); |
897 else | |
898 contact->alias = NULL; | |
899 | |
9285 | 900 schedule_blist_save(); |
901 | |
902 if (ops && ops->update) | |
7245 | 903 ops->update(gaimbuddylist, (GaimBlistNode*)contact); |
6755 | 904 } |
905 | |
906 const char *gaim_contact_get_alias(GaimContact* contact) | |
907 { | |
9285 | 908 g_return_val_if_fail(contact != NULL, NULL); |
909 | |
910 if (contact->alias) | |
7312 | 911 return contact->alias; |
912 | |
9620 | 913 return gaim_buddy_get_alias(contact->priority); |
6755 | 914 } |
915 | |
9787 | 916 gboolean gaim_contact_on_account(GaimContact *c, GaimAccount *account) |
917 { | |
918 GaimBlistNode *bnode, *cnode = (GaimBlistNode *) c; | |
919 | |
920 g_return_val_if_fail(c != NULL, FALSE); | |
921 g_return_val_if_fail(account != NULL, FALSE); | |
922 | |
923 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
924 GaimBuddy *buddy; | |
925 | |
926 if (! GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
927 continue; | |
928 | |
929 buddy = (GaimBuddy *)bnode; | |
930 if (buddy->account == account) | |
931 return TRUE; | |
932 } | |
933 return FALSE; | |
934 } | |
935 | |
6695 | 936 GaimGroup *gaim_group_new(const char *name) |
937 { | |
9285 | 938 GaimBlistUiOps *ops = gaim_blist_get_ui_ops(); |
939 GaimGroup *group = gaim_find_group(name); | |
940 | |
941 if (group != NULL) | |
942 return group; | |
943 | |
944 group = g_new0(GaimGroup, 1); | |
945 group->name = g_strdup(name); | |
946 group->totalsize = 0; | |
947 group->currentsize = 0; | |
948 group->online = 0; | |
949 gaim_blist_node_initialize_settings((GaimBlistNode *)group); | |
950 ((GaimBlistNode *)group)->type = GAIM_BLIST_GROUP_NODE; | |
951 | |
952 if (ops && ops->new_node) | |
953 ops->new_node((GaimBlistNode *)group); | |
954 | |
955 return group; | |
5228 | 956 } |
957 | |
6695 | 958 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
959 { | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
960 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6695 | 961 GaimGroup *g; |
6742 | 962 GaimBlistNode *gnode, *cnode, *bnode; |
6695 | 963 |
6774 | 964 g_return_if_fail(contact != NULL); |
965 g_return_if_fail(GAIM_BLIST_NODE_IS_CONTACT((GaimBlistNode*)contact)); | |
6695 | 966 |
9285 | 967 if ((GaimBlistNode*)contact == node) |
6975 | 968 return; |
969 | |
9285 | 970 if (node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
6695 | 971 GAIM_BLIST_NODE_IS_CHAT(node))) |
972 g = (GaimGroup*)node->parent; | |
9285 | 973 else if (group) |
6695 | 974 g = group; |
975 else { | |
976 g = gaim_group_new(_("Buddies")); | |
977 gaim_blist_add_group(g, | |
978 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
979 } | |
980 | |
981 gnode = (GaimBlistNode*)g; | |
982 cnode = (GaimBlistNode*)contact; | |
983 | |
9285 | 984 if (cnode->parent) { |
985 if (cnode->parent->child == cnode) | |
6731 | 986 cnode->parent->child = cnode->next; |
9285 | 987 if (cnode->prev) |
6695 | 988 cnode->prev->next = cnode->next; |
9285 | 989 if (cnode->next) |
6695 | 990 cnode->next->prev = cnode->prev; |
991 | |
9285 | 992 if (cnode->parent != gnode) { |
9928 | 993 bnode = cnode->child; |
994 while (bnode) { | |
995 GaimBlistNode *next_bnode = bnode->next; | |
6742 | 996 GaimBuddy *b = (GaimBuddy*)bnode; |
997 | |
998 struct _gaim_hbuddy *hb = g_new(struct _gaim_hbuddy, 1); | |
7261 | 999 hb->name = g_strdup(gaim_normalize(b->account, b->name)); |
6742 | 1000 hb->account = b->account; |
1001 hb->group = cnode->parent; | |
1002 | |
6776 | 1003 g_hash_table_remove(gaimbuddylist->buddies, hb); |
6742 | 1004 |
9285 | 1005 if (!gaim_find_buddy_in_group(b->account, b->name, g)) { |
8328 | 1006 hb->group = gnode; |
1007 g_hash_table_replace(gaimbuddylist->buddies, hb, b); | |
1008 | |
9285 | 1009 if (b->account->gc) |
1010 serv_move_buddy(b, (GaimGroup *)cnode->parent, g); | |
8328 | 1011 } else { |
9928 | 1012 gboolean empty_contact = FALSE; |
1013 | |
8328 | 1014 /* this buddy already exists in the group, so we're |
1015 * gonna delete it instead */ | |
1016 g_free(hb->name); | |
1017 g_free(hb); | |
9285 | 1018 if (b->account->gc) |
1019 serv_remove_buddy(b->account->gc, b, (GaimGroup *)cnode->parent); | |
1020 | |
1021 if (!cnode->child->next) | |
8328 | 1022 empty_contact = TRUE; |
1023 gaim_blist_remove_buddy(b); | |
9928 | 1024 |
1025 /** in gaim_blist_remove_buddy(), if the last buddy in a | |
1026 * contact is removed, the contact is cleaned up and | |
1027 * g_free'd, so we mustn't try to reference bnode->next */ | |
1028 if (empty_contact) | |
1029 return; | |
8328 | 1030 } |
9928 | 1031 bnode = next_bnode; |
6742 | 1032 } |
1033 } | |
9928 | 1034 |
1035 if (contact->online > 0) | |
1036 ((GaimGroup*)cnode->parent)->online--; | |
1037 if (contact->currentsize > 0) | |
1038 ((GaimGroup*)cnode->parent)->currentsize--; | |
1039 ((GaimGroup*)cnode->parent)->totalsize--; | |
1040 | |
1041 ops->remove(gaimbuddylist, cnode); | |
1042 | |
1043 schedule_blist_save(); | |
6695 | 1044 } |
1045 | |
9285 | 1046 if (node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
6695 | 1047 GAIM_BLIST_NODE_IS_CHAT(node))) { |
9285 | 1048 if (node->next) |
6695 | 1049 node->next->prev = cnode; |
1050 cnode->next = node->next; | |
1051 cnode->prev = node; | |
1052 cnode->parent = node->parent; | |
1053 node->next = cnode; | |
1054 } else { | |
9285 | 1055 if (gnode->child) |
6695 | 1056 gnode->child->prev = cnode; |
1057 cnode->prev = NULL; | |
1058 cnode->next = gnode->child; | |
1059 gnode->child = cnode; | |
1060 cnode->parent = gnode; | |
1061 } | |
1062 | |
9285 | 1063 if (contact->online > 0) |
6695 | 1064 g->online++; |
9285 | 1065 if (contact->currentsize > 0) |
6695 | 1066 g->currentsize++; |
1067 g->totalsize++; | |
1068 | |
9285 | 1069 schedule_blist_save(); |
1070 | |
1071 if (ops && cnode->child) | |
6695 | 1072 ops->update(gaimbuddylist, cnode); |
6775 | 1073 |
9285 | 1074 for (bnode = cnode->child; bnode; bnode = bnode->next) |
6775 | 1075 ops->update(gaimbuddylist, bnode); |
6695 | 1076 } |
1077 | |
7246 | 1078 void gaim_blist_merge_contact(GaimContact *source, GaimBlistNode *node) |
6965 | 1079 { |
1080 GaimBlistNode *sourcenode = (GaimBlistNode*)source; | |
7246 | 1081 GaimBlistNode *targetnode; |
1082 GaimBlistNode *prev, *cur, *next; | |
1083 GaimContact *target; | |
1084 | |
9285 | 1085 g_return_if_fail(source != NULL); |
1086 g_return_if_fail(node != NULL); | |
1087 | |
1088 if (GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
1089 target = (GaimContact *)node; | |
7246 | 1090 prev = gaim_blist_get_last_child(node); |
9285 | 1091 } else if (GAIM_BLIST_NODE_IS_BUDDY(node)) { |
1092 target = (GaimContact *)node->parent; | |
7246 | 1093 prev = node; |
1094 } else { | |
6965 | 1095 return; |
7246 | 1096 } |
1097 | |
9285 | 1098 if (source == target || !target) |
7246 | 1099 return; |
1100 | |
9285 | 1101 targetnode = (GaimBlistNode *)target; |
7246 | 1102 next = sourcenode->child; |
1103 | |
9285 | 1104 while (next) { |
7246 | 1105 cur = next; |
1106 next = cur->next; | |
9285 | 1107 if (GAIM_BLIST_NODE_IS_BUDDY(cur)) { |
1108 gaim_blist_add_buddy((GaimBuddy *)cur, target, NULL, prev); | |
7246 | 1109 prev = cur; |
1110 } | |
6965 | 1111 } |
1112 } | |
1113 | |
9285 | 1114 void gaim_blist_add_group(GaimGroup *group, GaimBlistNode *node) |
5228 | 1115 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1116 GaimBlistUiOps *ops; |
5228 | 1117 GaimBlistNode *gnode = (GaimBlistNode*)group; |
1118 | |
6774 | 1119 g_return_if_fail(group != NULL); |
9285 | 1120 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP((GaimBlistNode *)group)); |
1121 | |
5228 | 1122 ops = gaimbuddylist->ui_ops; |
1123 | |
1124 if (!gaimbuddylist->root) { | |
1125 gaimbuddylist->root = gnode; | |
1126 return; | |
1127 } | |
1128 | |
1129 /* if we're moving to overtop of ourselves, do nothing */ | |
9285 | 1130 if (gnode == node) |
5228 | 1131 return; |
1132 | |
1133 if (gaim_find_group(group->name)) { | |
1134 /* This is just being moved */ | |
1135 | |
9285 | 1136 ops->remove(gaimbuddylist, (GaimBlistNode *)group); |
1137 | |
1138 if (gnode == gaimbuddylist->root) | |
5228 | 1139 gaimbuddylist->root = gnode->next; |
9285 | 1140 if (gnode->prev) |
5228 | 1141 gnode->prev->next = gnode->next; |
9285 | 1142 if (gnode->next) |
5228 | 1143 gnode->next->prev = gnode->prev; |
1144 } | |
1145 | |
6695 | 1146 if (node && GAIM_BLIST_NODE_IS_GROUP(node)) { |
5634 | 1147 gnode->next = node->next; |
1148 gnode->prev = node; | |
9285 | 1149 if (node->next) |
5634 | 1150 node->next->prev = gnode; |
1151 node->next = gnode; | |
1152 } else { | |
9285 | 1153 if (gaimbuddylist->root) |
6807 | 1154 gaimbuddylist->root->prev = gnode; |
5634 | 1155 gnode->next = gaimbuddylist->root; |
1156 gnode->prev = NULL; | |
1157 gaimbuddylist->root = gnode; | |
1158 } | |
1159 | |
9285 | 1160 schedule_blist_save(); |
1161 | |
1162 if (ops && ops->update) { | |
5228 | 1163 ops->update(gaimbuddylist, gnode); |
9285 | 1164 for (node = gnode->child; node; node = node->next) |
5228 | 1165 ops->update(gaimbuddylist, node); |
1166 } | |
1167 } | |
1168 | |
9285 | 1169 void gaim_blist_remove_contact(GaimContact *contact) |
5228 | 1170 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1171 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 1172 GaimBlistNode *node, *gnode; |
1173 | |
1174 g_return_if_fail(contact != NULL); | |
1175 | |
1176 node = (GaimBlistNode *)contact; | |
1177 gnode = node->parent; | |
1178 | |
1179 if (node->child) { | |
1180 /* | |
1181 * If this contact has children then remove them. When the last | |
10166 | 1182 * buddy is removed from the contact, the contact is automatically |
1183 * deleted. | |
9285 | 1184 */ |
10166 | 1185 while (node->child->next) { |
9285 | 1186 gaim_blist_remove_buddy((GaimBuddy*)node->child); |
6695 | 1187 } |
10166 | 1188 /* |
1189 * Remove the last buddy and trigger the deletion of the contact. | |
1190 * It would probably be cleaner if contact-deletion was done after | |
1191 * a timeout? Or if it had to be done manually, like below? | |
1192 */ | |
1193 gaim_blist_remove_buddy((GaimBuddy*)node->child); | |
6695 | 1194 } else { |
9285 | 1195 /* Remove the node from its parent */ |
1196 if (gnode->child == node) | |
1197 gnode->child = node->next; | |
1198 if (node->prev) | |
1199 node->prev->next = node->next; | |
1200 if (node->next) | |
1201 node->next->prev = node->prev; | |
1202 | |
1203 schedule_blist_save(); | |
1204 | |
1205 /* Update the UI */ | |
1206 if (ops && ops->remove) | |
1207 ops->remove(gaimbuddylist, node); | |
1208 | |
1209 /* Delete the node */ | |
6695 | 1210 g_free(contact); |
1211 } | |
1212 } | |
1213 | |
9285 | 1214 void gaim_blist_remove_buddy(GaimBuddy *buddy) |
6695 | 1215 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1216 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 1217 GaimBlistNode *node, *cnode, *gnode; |
1218 GaimContact *contact; | |
6695 | 1219 GaimGroup *group; |
6742 | 1220 struct _gaim_hbuddy hb; |
5228 | 1221 |
9285 | 1222 g_return_if_fail(buddy != NULL); |
1223 | |
1224 node = (GaimBlistNode *)buddy; | |
6695 | 1225 cnode = node->parent; |
9285 | 1226 gnode = cnode->parent; |
1227 contact = (GaimContact *)cnode; | |
1228 group = (GaimGroup *)gnode; | |
1229 | |
1230 /* Remove the node from its parent */ | |
5228 | 1231 if (node->prev) |
1232 node->prev->next = node->next; | |
1233 if (node->next) | |
1234 node->next->prev = node->prev; | |
9285 | 1235 if (cnode->child == node) |
6695 | 1236 cnode->child = node->next; |
9285 | 1237 |
1238 /* Adjust size counts */ | |
1239 if (GAIM_BUDDY_IS_ONLINE(buddy)) { | |
1240 contact->online--; | |
1241 if (contact->online == 0) | |
1242 group->online--; | |
6695 | 1243 } |
9285 | 1244 if (gaim_account_is_connected(buddy->account)) { |
1245 contact->currentsize--; | |
1246 if (contact->currentsize == 0) | |
1247 group->currentsize--; | |
8194 | 1248 } |
9285 | 1249 contact->totalsize--; |
1250 | |
1251 schedule_blist_save(); | |
1252 | |
1253 /* Re-sort the contact */ | |
1254 if (contact->priority == buddy) { | |
1255 gaim_contact_compute_priority_buddy(contact); | |
1256 if (ops && ops->update) | |
1257 ops->update(gaimbuddylist, cnode); | |
1258 } | |
1259 | |
1260 /* Remove this buddy from the buddies hash table */ | |
7261 | 1261 hb.name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
5247 | 1262 hb.account = buddy->account; |
6695 | 1263 hb.group = ((GaimBlistNode*)buddy)->parent->parent; |
6742 | 1264 g_hash_table_remove(gaimbuddylist->buddies, &hb); |
7162 | 1265 g_free(hb.name); |
5247 | 1266 |
9285 | 1267 /* Update the UI */ |
1268 if (ops && ops->remove) | |
1269 ops->remove(gaimbuddylist, node); | |
1270 | |
1271 /* Delete the node */ | |
1272 if (buddy->timer > 0) | |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
1273 gaim_timeout_remove(buddy->timer); |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1274 if (buddy->icon != NULL) |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1275 gaim_buddy_icon_unref(buddy->icon); |
7693 | 1276 g_hash_table_destroy(buddy->node.settings); |
9944 | 1277 gaim_presence_remove_buddy(buddy->presence, buddy); |
1278 gaim_presence_destroy(buddy->presence); | |
5228 | 1279 g_free(buddy->name); |
1280 g_free(buddy->alias); | |
1281 g_free(buddy); | |
6755 | 1282 |
9285 | 1283 /* If the contact is empty then remove it */ |
1284 if (!cnode->child) | |
1285 gaim_blist_remove_contact(contact); | |
5228 | 1286 } |
1287 | |
9285 | 1288 void gaim_blist_remove_chat(GaimChat *chat) |
5234 | 1289 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1290 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 1291 GaimBlistNode *node, *gnode; |
6695 | 1292 GaimGroup *group; |
5234 | 1293 |
9285 | 1294 g_return_if_fail(chat != NULL); |
1295 | |
1296 node = (GaimBlistNode *)chat; | |
5234 | 1297 gnode = node->parent; |
6695 | 1298 group = (GaimGroup *)gnode; |
5234 | 1299 |
9285 | 1300 /* Remove the node from its parent */ |
1301 if (gnode->child == node) | |
5234 | 1302 gnode->child = node->next; |
1303 if (node->prev) | |
1304 node->prev->next = node->next; | |
1305 if (node->next) | |
1306 node->next->prev = node->prev; | |
9285 | 1307 |
1308 /* Adjust size counts */ | |
5855 | 1309 if (gaim_account_is_connected(chat->account)) { |
5394 | 1310 group->online--; |
9285 | 1311 group->currentsize--; |
5394 | 1312 } |
9285 | 1313 group->totalsize--; |
1314 | |
1315 schedule_blist_save(); | |
1316 | |
1317 /* Update the UI */ | |
1318 if (ops && ops->remove) | |
1319 ops->remove(gaimbuddylist, node); | |
1320 | |
1321 /* Delete the node */ | |
5234 | 1322 g_hash_table_destroy(chat->components); |
1323 g_free(chat->alias); | |
1324 g_free(chat); | |
1325 } | |
1326 | |
9285 | 1327 void gaim_blist_remove_group(GaimGroup *group) |
5228 | 1328 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1329 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
9285 | 1330 GaimBlistNode *node; |
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1331 GList *l; |
5228 | 1332 |
9285 | 1333 g_return_if_fail(group != NULL); |
1334 | |
1335 node = (GaimBlistNode *)group; | |
1336 | |
1337 /* Make sure the group is empty */ | |
1338 if (node->child) { | |
5228 | 1339 char *buf; |
1340 int count = 0; | |
9285 | 1341 GaimBlistNode *child; |
1342 | |
1343 for (child = node->child; child != NULL; child = child->next) | |
5228 | 1344 count++; |
1345 | |
6308 | 1346 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed " |
1347 "because its account was not logged in." | |
1348 " This buddy and the group were not " | |
1349 "removed.\n", | |
1350 "%d buddies from group %s were not " | |
1351 "removed because their accounts were " | |
6336 | 1352 "not logged in. These buddies and " |
1353 "the group were not removed.\n", count), | |
6308 | 1354 count, group->name); |
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1355 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); |
5228 | 1356 g_free(buf); |
1357 return; | |
1358 } | |
1359 | |
9285 | 1360 /* Remove the node from its parent */ |
1361 if (gaimbuddylist->root == node) | |
5228 | 1362 gaimbuddylist->root = node->next; |
1363 if (node->prev) | |
1364 node->prev->next = node->next; | |
1365 if (node->next) | |
1366 node->next->prev = node->prev; | |
1367 | |
9285 | 1368 schedule_blist_save(); |
1369 | |
1370 /* Update the UI */ | |
1371 if (ops && ops->remove) | |
1372 ops->remove(gaimbuddylist, node); | |
1373 | |
1374 /* Remove the group from all accounts that are online */ | |
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1375 for (l = gaim_connections_get_all(); l != NULL; l = l->next) |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1376 { |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1377 GaimConnection *gc = (GaimConnection *)l->data; |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1378 |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1379 if (gaim_connection_get_state(gc) == GAIM_CONNECTED) |
9285 | 1380 serv_remove_group(gc, group); |
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1381 } |
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1382 |
9285 | 1383 /* Delete the node */ |
5228 | 1384 g_free(group->name); |
1385 g_free(group); | |
1386 } | |
1387 | |
9285 | 1388 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact) |
1389 { | |
1390 g_return_val_if_fail(contact != NULL, NULL); | |
1391 | |
6843 | 1392 return contact->priority; |
6695 | 1393 } |
1394 | |
9620 | 1395 const char *gaim_buddy_get_alias_only(GaimBuddy *buddy) |
9285 | 1396 { |
1397 g_return_val_if_fail(buddy != NULL, NULL); | |
1398 | |
1399 if ((buddy->alias != NULL) && (*buddy->alias != '\0')) { | |
1400 return buddy->alias; | |
1401 } else if ((buddy->server_alias != NULL) && | |
1402 (*buddy->server_alias != '\0') && | |
1403 (gaim_prefs_get_bool("/core/buddies/use_server_alias"))) { | |
1404 | |
1405 return buddy->server_alias; | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1406 } |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1407 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1408 return NULL; |
5228 | 1409 } |
1410 | |
9620 | 1411 |
1412 const char *gaim_buddy_get_contact_alias(GaimBuddy *buddy) | |
5228 | 1413 { |
9620 | 1414 GaimContact *c; |
1415 | |
1416 g_return_val_if_fail(buddy != NULL, NULL); | |
1417 | |
1418 /* Search for an alias for the buddy. In order of precedence: */ | |
1419 /* The buddy alias */ | |
1420 if (buddy->alias != NULL) | |
1421 return buddy->alias; | |
1422 | |
1423 /* The contact alias */ | |
1424 c = gaim_buddy_get_contact(buddy); | |
1425 if ((c != NULL) && (c->alias != NULL)) | |
1426 return c->alias; | |
1427 | |
1428 /* The server alias, if preferences say so */ | |
1429 if ((buddy->server_alias) && (*buddy->server_alias) && | |
1430 (gaim_prefs_get_bool("/core/buddies/use_server_alias"))) | |
1431 return buddy->server_alias; | |
1432 | |
1433 /* The buddy's user name (i.e. no alias) */ | |
1434 return buddy->name; | |
5228 | 1435 } |
1436 | |
9620 | 1437 |
1438 const char *gaim_buddy_get_alias(GaimBuddy *buddy) | |
1439 { | |
1440 g_return_val_if_fail(buddy != NULL, NULL); | |
1441 | |
1442 /* Search for an alias for the buddy. In order of precedence: */ | |
1443 /* The buddy alias */ | |
1444 if (buddy->alias != NULL) | |
1445 return buddy->alias; | |
1446 | |
1447 /* The server alias, if preferences say so */ | |
1448 if ((buddy->server_alias) && (*buddy->server_alias) && | |
1449 (gaim_prefs_get_bool("/core/buddies/use_server_alias"))) | |
1450 return buddy->server_alias; | |
1451 | |
1452 /* The buddy's user name (i.e. no alias) */ | |
1453 return buddy->name; | |
1454 } | |
1455 | |
1456 | |
7125 | 1457 const char *gaim_chat_get_name(GaimChat *chat) |
6744 | 1458 { |
9285 | 1459 struct proto_chat_entry *pce; |
1460 GList *parts, *tmp; | |
1461 char *ret; | |
1462 | |
1463 g_return_val_if_fail(chat != NULL, NULL); | |
1464 | |
1465 if ((chat->alias != NULL) && (*chat->alias != '\0')) | |
6744 | 1466 return chat->alias; |
9285 | 1467 |
1468 parts = GAIM_PLUGIN_PROTOCOL_INFO(chat->account->gc->prpl)->chat_info(chat->account->gc); | |
1469 pce = parts->data; | |
1470 ret = g_hash_table_lookup(chat->components, pce->identifier); | |
1471 for (tmp = parts; tmp; tmp = tmp->next) | |
1472 g_free(tmp->data); | |
1473 g_list_free(parts); | |
1474 | |
1475 return ret; | |
6744 | 1476 } |
1477 | |
6695 | 1478 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name) |
5228 | 1479 { |
6695 | 1480 GaimBuddy *buddy; |
5247 | 1481 struct _gaim_hbuddy hb; |
5758 | 1482 GaimBlistNode *group; |
5228 | 1483 |
9285 | 1484 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
1485 g_return_val_if_fail(account != NULL, NULL); | |
1486 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
5228 | 1487 |
7429 | 1488 hb.account = account; |
7261 | 1489 hb.name = g_strdup(gaim_normalize(account, name)); |
7429 | 1490 |
9285 | 1491 for (group = gaimbuddylist->root; group; group = group->next) { |
5758 | 1492 hb.group = group; |
7162 | 1493 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb))) { |
1494 g_free(hb.name); | |
5758 | 1495 return buddy; |
7162 | 1496 } |
5758 | 1497 } |
7162 | 1498 g_free(hb.name); |
9285 | 1499 |
5758 | 1500 return NULL; |
5228 | 1501 } |
1502 | |
6872 | 1503 GaimBuddy *gaim_find_buddy_in_group(GaimAccount *account, const char *name, |
1504 GaimGroup *group) | |
1505 { | |
1506 struct _gaim_hbuddy hb; | |
7162 | 1507 GaimBuddy *ret; |
6872 | 1508 |
9285 | 1509 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
1510 g_return_val_if_fail(account != NULL, NULL); | |
1511 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
6872 | 1512 |
7261 | 1513 hb.name = g_strdup(gaim_normalize(account, name)); |
6872 | 1514 hb.account = account; |
1515 hb.group = (GaimBlistNode*)group; | |
1516 | |
7162 | 1517 ret = g_hash_table_lookup(gaimbuddylist->buddies, &hb); |
1518 g_free(hb.name); | |
9285 | 1519 |
7162 | 1520 return ret; |
6872 | 1521 } |
1522 | |
6245 | 1523 GSList *gaim_find_buddies(GaimAccount *account, const char *name) |
1524 { | |
1525 struct buddy *buddy; | |
1526 struct _gaim_hbuddy hb; | |
9285 | 1527 GaimBlistNode *node; |
6245 | 1528 GSList *ret = NULL; |
1529 | |
9285 | 1530 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
1531 g_return_val_if_fail(account != NULL, NULL); | |
1532 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
6245 | 1533 |
7261 | 1534 hb.name = g_strdup(gaim_normalize(account, name)); |
6245 | 1535 hb.account = account; |
1536 | |
9285 | 1537 for (node = gaimbuddylist->root; node != NULL; node = node->next) { |
1538 hb.group = node; | |
6245 | 1539 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) |
1540 ret = g_slist_append(ret, buddy); | |
1541 } | |
7162 | 1542 g_free(hb.name); |
9285 | 1543 |
6245 | 1544 return ret; |
1545 } | |
1546 | |
6695 | 1547 GaimGroup *gaim_find_group(const char *name) |
5228 | 1548 { |
1549 GaimBlistNode *node; | |
9285 | 1550 |
1551 g_return_val_if_fail(gaimbuddylist != NULL, NULL); | |
1552 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
1553 | |
1554 for (node = gaimbuddylist->root; node != NULL; node = node->next) { | |
6695 | 1555 if (!strcmp(((GaimGroup *)node)->name, name)) |
1556 return (GaimGroup *)node; | |
5228 | 1557 } |
9285 | 1558 |
5228 | 1559 return NULL; |
1560 } | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1561 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1562 GaimChat * |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1563 gaim_blist_find_chat(GaimAccount *account, const char *name) |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1564 { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1565 char *chat_name; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1566 GaimChat *chat; |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1567 GaimPlugin *prpl; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1568 GaimPluginProtocolInfo *prpl_info = NULL; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1569 struct proto_chat_entry *pce; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1570 GaimBlistNode *node, *group; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1571 GList *parts; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1572 |
9285 | 1573 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
1574 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
1575 | |
1576 if (!gaim_account_is_connected(account)) | |
7970 | 1577 return NULL; |
1578 | |
7999 | 1579 prpl = gaim_find_prpl(gaim_account_get_protocol_id(account)); |
1580 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
1581 | |
9285 | 1582 if (prpl_info->find_blist_chat != NULL) |
7999 | 1583 return prpl_info->find_blist_chat(account, name); |
1584 | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1585 for (group = gaimbuddylist->root; group != NULL; group = group->next) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1586 for (node = group->child; node != NULL; node = node->next) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1587 if (GAIM_BLIST_NODE_IS_CHAT(node)) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1588 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1589 chat = (GaimChat*)node; |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1590 |
9285 | 1591 if (account != chat->account) |
7970 | 1592 continue; |
1593 | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1594 parts = prpl_info->chat_info( |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1595 gaim_account_get_connection(chat->account)); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1596 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1597 pce = parts->data; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1598 chat_name = g_hash_table_lookup(chat->components, |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1599 pce->identifier); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1600 |
9153 | 1601 if (chat->account == account && chat_name != NULL && |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1602 name != NULL && !strcmp(chat_name, name)) { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1603 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1604 return chat; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1605 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1606 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1607 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1608 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1609 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1610 return NULL; |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1611 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1612 |
6695 | 1613 GaimGroup * |
7125 | 1614 gaim_chat_get_group(GaimChat *chat) |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1615 { |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1616 g_return_val_if_fail(chat != NULL, NULL); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1617 |
6695 | 1618 return (GaimGroup *)(((GaimBlistNode *)chat)->parent); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1619 } |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1620 |
9285 | 1621 GaimContact *gaim_buddy_get_contact(GaimBuddy *buddy) |
1622 { | |
1623 g_return_val_if_fail(buddy != NULL, NULL); | |
1624 | |
1625 return (GaimContact*)((GaimBlistNode*)buddy)->parent; | |
1626 } | |
1627 | |
9949 | 1628 GaimPresence *gaim_buddy_get_presence(const GaimBuddy *buddy) |
1629 { | |
1630 g_return_val_if_fail(buddy != NULL, NULL); | |
1631 return buddy->presence; | |
1632 } | |
1633 | |
1634 | |
6695 | 1635 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy) |
5228 | 1636 { |
9285 | 1637 g_return_val_if_fail(buddy != NULL, NULL); |
6706
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1638 |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1639 if (((GaimBlistNode *)buddy)->parent == NULL) |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1640 return NULL; |
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1641 |
6695 | 1642 return (GaimGroup *)(((GaimBlistNode*)buddy)->parent->parent); |
5228 | 1643 } |
1644 | |
9285 | 1645 GSList *gaim_group_get_accounts(GaimGroup *group) |
5228 | 1646 { |
1647 GSList *l = NULL; | |
6695 | 1648 GaimBlistNode *gnode, *cnode, *bnode; |
1649 | |
9285 | 1650 gnode = (GaimBlistNode *)group; |
1651 | |
1652 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
6695 | 1653 if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
9285 | 1654 if (!g_slist_find(l, ((GaimChat *)cnode)->account)) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1655 l = g_slist_append(l, ((GaimChat *)cnode)->account); |
9285 | 1656 } else if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { |
1657 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
1658 if (GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
1659 if (!g_slist_find(l, ((GaimBuddy *)bnode)->account)) | |
6695 | 1660 l = g_slist_append(l, ((GaimBuddy *)bnode)->account); |
1661 } | |
1662 } | |
1663 } | |
5228 | 1664 } |
6695 | 1665 |
5228 | 1666 return l; |
1667 } | |
1668 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1669 void gaim_blist_add_account(GaimAccount *account) |
5234 | 1670 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1671 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6695 | 1672 GaimBlistNode *gnode, *cnode, *bnode; |
5234 | 1673 |
9285 | 1674 g_return_if_fail(gaimbuddylist != NULL); |
1675 | |
1676 if (!ops || !ops->update) | |
6695 | 1677 return; |
1678 | |
9285 | 1679 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
1680 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5234 | 1681 continue; |
9285 | 1682 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
1683 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
6956 | 1684 gboolean recompute = FALSE; |
9285 | 1685 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
1686 if (GAIM_BLIST_NODE_IS_BUDDY(bnode) && | |
6695 | 1687 ((GaimBuddy*)bnode)->account == account) { |
6956 | 1688 recompute = TRUE; |
6695 | 1689 ((GaimContact*)cnode)->currentsize++; |
9285 | 1690 if (((GaimContact*)cnode)->currentsize == 1) |
6695 | 1691 ((GaimGroup*)gnode)->currentsize++; |
1692 ops->update(gaimbuddylist, bnode); | |
1693 } | |
1694 } | |
9285 | 1695 if (recompute || |
8960 | 1696 gaim_blist_node_get_bool(cnode, "show_offline")) { |
6956 | 1697 gaim_contact_compute_priority_buddy((GaimContact*)cnode); |
1698 ops->update(gaimbuddylist, cnode); | |
1699 } | |
9285 | 1700 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode) && |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1701 ((GaimChat*)cnode)->account == account) { |
6901 | 1702 ((GaimGroup *)gnode)->online++; |
1703 ((GaimGroup *)gnode)->currentsize++; | |
1704 ops->update(gaimbuddylist, cnode); | |
5234 | 1705 } |
1706 } | |
6695 | 1707 ops->update(gaimbuddylist, gnode); |
5234 | 1708 } |
1709 } | |
1710 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1711 void gaim_blist_remove_account(GaimAccount *account) |
5228 | 1712 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1713 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
6695 | 1714 GaimBlistNode *gnode, *cnode, *bnode; |
5234 | 1715 |
9285 | 1716 g_return_if_fail(gaimbuddylist != NULL); |
1717 | |
1718 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
1719 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5234 | 1720 continue; |
9285 | 1721 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
1722 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
6957 | 1723 gboolean recompute = FALSE; |
9285 | 1724 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
1725 if (!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
6695 | 1726 continue; |
9285 | 1727 if (account == ((GaimBuddy *)bnode)->account) { |
6957 | 1728 recompute = TRUE; |
9285 | 1729 if (((GaimBuddy*)bnode)->present == GAIM_BUDDY_ONLINE || |
6695 | 1730 ((GaimBuddy*)bnode)->present == GAIM_BUDDY_SIGNING_ON) { |
1731 ((GaimContact*)cnode)->online--; | |
9285 | 1732 if (((GaimContact*)cnode)->online == 0) |
6695 | 1733 ((GaimGroup*)gnode)->online--; |
1734 } | |
1735 ((GaimContact*)cnode)->currentsize--; | |
9285 | 1736 if (((GaimContact*)cnode)->currentsize == 0) |
6695 | 1737 ((GaimGroup*)gnode)->currentsize--; |
1738 | |
1739 ((GaimBuddy*)bnode)->present = GAIM_BUDDY_OFFLINE; | |
1740 | |
6803 | 1741 ((GaimBuddy*)bnode)->uc = 0; |
9944 | 1742 /* XXX ((GaimBuddy*)bnode)->idle = 0; */ |
6803 | 1743 |
6945 | 1744 |
9285 | 1745 if (ops && ops->remove) |
6695 | 1746 ops->remove(gaimbuddylist, bnode); |
1747 } | |
5234 | 1748 } |
9285 | 1749 if (recompute) { |
6959 | 1750 gaim_contact_compute_priority_buddy((GaimContact*)cnode); |
9285 | 1751 if (ops && ops->update) |
6983 | 1752 ops->update(gaimbuddylist, cnode); |
1753 } | |
9285 | 1754 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode) && |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1755 ((GaimChat*)cnode)->account == account) { |
6695 | 1756 ((GaimGroup*)gnode)->currentsize--; |
1757 ((GaimGroup*)gnode)->online--; | |
9285 | 1758 if (ops && ops->remove) |
6695 | 1759 ops->remove(gaimbuddylist, cnode); |
5228 | 1760 } |
1761 } | |
1762 } | |
1763 } | |
1764 | |
9285 | 1765 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account) |
1766 { | |
9787 | 1767 GaimBlistNode *cnode; |
9285 | 1768 for (cnode = ((GaimBlistNode *)g)->child; cnode; cnode = cnode->next) { |
1769 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
9787 | 1770 if(gaim_contact_on_account((GaimContact *) cnode, account)) |
1771 return TRUE; | |
9285 | 1772 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1773 GaimChat *chat = (GaimChat *)cnode; |
9285 | 1774 if ((!account && gaim_account_is_connected(chat->account)) |
6695 | 1775 || chat->account == account) |
1776 return TRUE; | |
1777 } | |
5228 | 1778 } |
1779 return FALSE; | |
1780 } | |
1781 | |
1782 static gboolean blist_safe_to_write = FALSE; | |
1783 | |
7132 | 1784 static void parse_setting(GaimBlistNode *node, xmlnode *setting) |
1785 { | |
1786 const char *name = xmlnode_get_attrib(setting, "name"); | |
7693 | 1787 const char *type = xmlnode_get_attrib(setting, "type"); |
7132 | 1788 char *value = xmlnode_get_data(setting); |
1789 | |
9285 | 1790 if (!value) |
7693 | 1791 return; |
1792 | |
9285 | 1793 if (!type || !strcmp(type, "string")) |
7693 | 1794 gaim_blist_node_set_string(node, name, value); |
9285 | 1795 else if (!strcmp(type, "bool")) |
7693 | 1796 gaim_blist_node_set_bool(node, name, atoi(value)); |
9285 | 1797 else if (!strcmp(type, "int")) |
7693 | 1798 gaim_blist_node_set_int(node, name, atoi(value)); |
7132 | 1799 |
1800 g_free(value); | |
1801 } | |
1802 | |
1803 static void parse_buddy(GaimGroup *group, GaimContact *contact, xmlnode *bnode) | |
1804 { | |
1805 GaimAccount *account; | |
1806 GaimBuddy *buddy; | |
7727 | 1807 char *name = NULL, *alias = NULL; |
7153 | 1808 const char *acct_name, *proto, *protocol; |
7132 | 1809 xmlnode *x; |
1810 | |
1811 acct_name = xmlnode_get_attrib(bnode, "account"); | |
7153 | 1812 protocol = xmlnode_get_attrib(bnode, "protocol"); |
1813 proto = xmlnode_get_attrib(bnode, "proto"); | |
1814 | |
9285 | 1815 if (!acct_name || (!proto && !protocol)) |
7132 | 1816 return; |
1817 | |
7153 | 1818 account = gaim_accounts_find(acct_name, proto ? proto : protocol); |
7132 | 1819 |
9285 | 1820 if (!account) |
7132 | 1821 return; |
1822 | |
9285 | 1823 if ((x = xmlnode_get_child(bnode, "name"))) |
7132 | 1824 name = xmlnode_get_data(x); |
1825 | |
9285 | 1826 if (!name) |
7132 | 1827 return; |
1828 | |
9285 | 1829 if ((x = xmlnode_get_child(bnode, "alias"))) |
7132 | 1830 alias = xmlnode_get_data(x); |
1831 | |
1832 buddy = gaim_buddy_new(account, name, alias); | |
1833 gaim_blist_add_buddy(buddy, contact, group, | |
1834 gaim_blist_get_last_child((GaimBlistNode*)contact)); | |
1835 | |
9285 | 1836 for (x = xmlnode_get_child(bnode, "setting"); x; x = xmlnode_get_next_twin(x)) { |
7132 | 1837 parse_setting((GaimBlistNode*)buddy, x); |
1838 } | |
1839 | |
1840 g_free(name); | |
9285 | 1841 if (alias) |
7132 | 1842 g_free(alias); |
1843 } | |
1844 | |
1845 static void parse_contact(GaimGroup *group, xmlnode *cnode) | |
1846 { | |
1847 GaimContact *contact = gaim_contact_new(); | |
1848 xmlnode *x; | |
7245 | 1849 const char *alias; |
7132 | 1850 |
1851 gaim_blist_add_contact(contact, group, | |
1852 gaim_blist_get_last_child((GaimBlistNode*)group)); | |
1853 | |
9285 | 1854 if ((alias = xmlnode_get_attrib(cnode, "alias"))) { |
7132 | 1855 gaim_contact_set_alias(contact, alias); |
1856 } | |
1857 | |
9285 | 1858 for (x = cnode->child; x; x = x->next) { |
1859 if (x->type != XMLNODE_TYPE_TAG) | |
7132 | 1860 continue; |
9285 | 1861 if (!strcmp(x->name, "buddy")) |
7132 | 1862 parse_buddy(group, contact, x); |
9285 | 1863 else if (!strcmp(x->name, "setting")) |
7132 | 1864 parse_setting((GaimBlistNode*)contact, x); |
5228 | 1865 } |
7825 | 1866 |
1867 /* if the contact is empty, don't keep it around. it causes problems */ | |
9285 | 1868 if (!((GaimBlistNode*)contact)->child) |
7825 | 1869 gaim_blist_remove_contact(contact); |
5228 | 1870 } |
1871 | |
7132 | 1872 static void parse_chat(GaimGroup *group, xmlnode *cnode) |
1873 { | |
1874 GaimChat *chat; | |
1875 GaimAccount *account; | |
7153 | 1876 const char *acct_name, *proto, *protocol; |
7132 | 1877 xmlnode *x; |
1878 char *alias = NULL; | |
1879 GHashTable *components; | |
1880 | |
1881 acct_name = xmlnode_get_attrib(cnode, "account"); | |
7153 | 1882 protocol = xmlnode_get_attrib(cnode, "protocol"); |
1883 proto = xmlnode_get_attrib(cnode, "proto"); | |
1884 | |
9285 | 1885 if (!acct_name || (!proto && !protocol)) |
7132 | 1886 return; |
1887 | |
7153 | 1888 account = gaim_accounts_find(acct_name, proto ? proto : protocol); |
7132 | 1889 |
9285 | 1890 if (!account) |
7132 | 1891 return; |
1892 | |
9285 | 1893 if ((x = xmlnode_get_child(cnode, "alias"))) |
7132 | 1894 alias = xmlnode_get_data(x); |
1895 | |
1896 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); | |
1897 | |
9285 | 1898 for (x = xmlnode_get_child(cnode, "component"); x; x = xmlnode_get_next_twin(x)) { |
7132 | 1899 const char *name; |
1900 char *value; | |
1901 | |
1902 name = xmlnode_get_attrib(x, "name"); | |
1903 value = xmlnode_get_data(x); | |
1904 g_hash_table_replace(components, g_strdup(name), value); | |
1905 } | |
1906 | |
1907 chat = gaim_chat_new(account, alias, components); | |
7151 | 1908 gaim_blist_add_chat(chat, group, |
1909 gaim_blist_get_last_child((GaimBlistNode*)group)); | |
7132 | 1910 |
9285 | 1911 for (x = xmlnode_get_child(cnode, "setting"); x; x = xmlnode_get_next_twin(x)) { |
7132 | 1912 parse_setting((GaimBlistNode*)chat, x); |
1913 } | |
1914 | |
9285 | 1915 if (alias) |
7132 | 1916 g_free(alias); |
1917 } | |
1918 | |
1919 | |
1920 static void parse_group(xmlnode *groupnode) | |
1921 { | |
1922 const char *name = xmlnode_get_attrib(groupnode, "name"); | |
1923 GaimGroup *group; | |
1924 xmlnode *cnode; | |
1925 | |
9285 | 1926 if (!name) |
7132 | 1927 name = _("Buddies"); |
1928 | |
1929 group = gaim_group_new(name); | |
1930 gaim_blist_add_group(group, | |
1931 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
1932 | |
9285 | 1933 for (cnode = groupnode->child; cnode; cnode = cnode->next) { |
1934 if (cnode->type != XMLNODE_TYPE_TAG) | |
7132 | 1935 continue; |
9285 | 1936 if (!strcmp(cnode->name, "setting")) |
7132 | 1937 parse_setting((GaimBlistNode*)group, cnode); |
9285 | 1938 else if (!strcmp(cnode->name, "contact") || |
7132 | 1939 !strcmp(cnode->name, "person")) |
1940 parse_contact(group, cnode); | |
9285 | 1941 else if (!strcmp(cnode->name, "chat")) |
7132 | 1942 parse_chat(group, cnode); |
5228 | 1943 } |
1944 } | |
1945 | |
9285 | 1946 static gboolean gaim_blist_read(const char *filename) |
1947 { | |
7132 | 1948 GError *error; |
5228 | 1949 gchar *contents = NULL; |
1950 gsize length; | |
7132 | 1951 xmlnode *gaim, *blist, *privacy; |
5228 | 1952 |
1953 gaim_debug(GAIM_DEBUG_INFO, "blist import", | |
1954 "Reading %s\n", filename); | |
9285 | 1955 if (!g_file_get_contents(filename, &contents, &length, &error)) { |
5228 | 1956 gaim_debug(GAIM_DEBUG_ERROR, "blist import", |
1957 "Error reading blist: %s\n", error->message); | |
1958 g_error_free(error); | |
1959 return FALSE; | |
1960 } | |
1961 | |
7132 | 1962 gaim = xmlnode_from_str(contents, length); |
8826 | 1963 |
9285 | 1964 if (!gaim) { |
8826 | 1965 FILE *backup; |
1966 char *name; | |
7132 | 1967 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Error parsing %s\n", |
1968 filename); | |
8826 | 1969 name = g_build_filename(gaim_user_dir(), "blist.xml~", NULL); |
1970 | |
9285 | 1971 if ((backup = fopen(name, "w"))) { |
8826 | 1972 fwrite(contents, length, 1, backup); |
1973 fclose(backup); | |
1974 chmod(name, S_IRUSR | S_IWUSR); | |
1975 } else { | |
1976 gaim_debug(GAIM_DEBUG_ERROR, "blist load", "Unable to write backup %s\n", | |
1977 name); | |
1978 } | |
1979 g_free(name); | |
1980 g_free(contents); | |
5228 | 1981 return FALSE; |
1982 } | |
8826 | 1983 |
1984 g_free(contents); | |
1985 | |
7132 | 1986 blist = xmlnode_get_child(gaim, "blist"); |
9285 | 1987 if (blist) { |
7132 | 1988 xmlnode *groupnode; |
9285 | 1989 for (groupnode = xmlnode_get_child(blist, "group"); groupnode; |
8135 | 1990 groupnode = xmlnode_get_next_twin(groupnode)) { |
7132 | 1991 parse_group(groupnode); |
1992 } | |
5228 | 1993 } |
1994 | |
7132 | 1995 privacy = xmlnode_get_child(gaim, "privacy"); |
9285 | 1996 if (privacy) { |
7132 | 1997 xmlnode *anode; |
9285 | 1998 for (anode = privacy->child; anode; anode = anode->next) { |
7132 | 1999 xmlnode *x; |
2000 GaimAccount *account; | |
7153 | 2001 const char *acct_name, *proto, *mode, *protocol; |
7132 | 2002 |
2003 acct_name = xmlnode_get_attrib(anode, "name"); | |
7153 | 2004 protocol = xmlnode_get_attrib(anode, "protocol"); |
2005 proto = xmlnode_get_attrib(anode, "proto"); | |
7132 | 2006 mode = xmlnode_get_attrib(anode, "mode"); |
2007 | |
9285 | 2008 if (!acct_name || (!proto && !protocol) || !mode) |
7132 | 2009 continue; |
2010 | |
7153 | 2011 account = gaim_accounts_find(acct_name, proto ? proto : protocol); |
7132 | 2012 |
9285 | 2013 if (!account) |
7132 | 2014 continue; |
2015 | |
2016 account->perm_deny = atoi(mode); | |
2017 | |
9285 | 2018 for (x = anode->child; x; x = x->next) { |
7132 | 2019 char *name; |
9285 | 2020 if (x->type != XMLNODE_TYPE_TAG) |
7132 | 2021 continue; |
2022 | |
9285 | 2023 if (!strcmp(x->name, "permit")) { |
7132 | 2024 name = xmlnode_get_data(x); |
2025 gaim_privacy_permit_add(account, name, TRUE); | |
2026 g_free(name); | |
9285 | 2027 } else if (!strcmp(x->name, "block")) { |
7132 | 2028 name = xmlnode_get_data(x); |
2029 gaim_privacy_deny_add(account, name, TRUE); | |
2030 g_free(name); | |
2031 } | |
2032 } | |
2033 } | |
2034 } | |
5228 | 2035 |
2036 gaim_debug(GAIM_DEBUG_INFO, "blist import", "Finished reading %s\n", | |
2037 filename); | |
2038 | |
8200 | 2039 xmlnode_free(gaim); |
5228 | 2040 return TRUE; |
2041 } | |
2042 | |
9285 | 2043 void gaim_blist_load() |
2044 { | |
5228 | 2045 char *user_dir = gaim_user_dir(); |
2046 char *filename; | |
2047 char *msg; | |
2048 | |
2049 blist_safe_to_write = TRUE; | |
2050 | |
9285 | 2051 if (!user_dir) |
5228 | 2052 return; |
2053 | |
2054 filename = g_build_filename(user_dir, "blist.xml", NULL); | |
2055 | |
9285 | 2056 if (g_file_test(filename, G_FILE_TEST_EXISTS)) { |
2057 if (!gaim_blist_read(filename)) { | |
5228 | 2058 msg = g_strdup_printf(_("An error was encountered parsing your " |
8826 | 2059 "buddy list. It has not been loaded, " |
2060 "and the old file has moved to blist.xml~.")); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2061 gaim_notify_error(NULL, NULL, _("Buddy List Error"), msg); |
5228 | 2062 g_free(msg); |
2063 } | |
2064 } | |
2065 | |
2066 g_free(filename); | |
2067 } | |
2068 | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2069 void |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2070 gaim_blist_request_add_buddy(GaimAccount *account, const char *username, |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2071 const char *group, const char *alias) |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2072 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2073 GaimBlistUiOps *ui_ops; |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2074 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2075 ui_ops = gaim_blist_get_ui_ops(); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2076 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2077 if (ui_ops != NULL && ui_ops->request_add_buddy != NULL) |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2078 ui_ops->request_add_buddy(account, username, group, alias); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2079 } |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2080 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2081 void |
9754 | 2082 gaim_blist_request_add_chat(GaimAccount *account, GaimGroup *group, |
2083 const char *alias, const char *name) | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2084 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2085 GaimBlistUiOps *ui_ops; |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2086 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2087 ui_ops = gaim_blist_get_ui_ops(); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2088 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2089 if (ui_ops != NULL && ui_ops->request_add_chat != NULL) |
9754 | 2090 ui_ops->request_add_chat(account, group, alias, name); |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2091 } |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2092 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2093 void |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2094 gaim_blist_request_add_group(void) |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2095 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2096 GaimBlistUiOps *ui_ops; |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2097 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2098 ui_ops = gaim_blist_get_ui_ops(); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2099 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2100 if (ui_ops != NULL && ui_ops->request_add_group != NULL) |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2101 ui_ops->request_add_group(); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2102 } |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2103 |
7693 | 2104 static void blist_print_setting(const char *key, |
2105 struct gaim_blist_node_setting *setting, FILE *file, int indent) | |
2106 { | |
2107 char *key_val, *data_val = NULL; | |
2108 const char *type = NULL; | |
2109 int i; | |
2110 | |
9285 | 2111 if (!key) |
7693 | 2112 return; |
2113 | |
2114 switch(setting->type) { | |
2115 case GAIM_BLIST_NODE_SETTING_BOOL: | |
2116 type = "bool"; | |
2117 data_val = g_strdup_printf("%d", setting->value.boolean); | |
2118 break; | |
2119 case GAIM_BLIST_NODE_SETTING_INT: | |
2120 type = "int"; | |
2121 data_val = g_strdup_printf("%d", setting->value.integer); | |
2122 break; | |
2123 case GAIM_BLIST_NODE_SETTING_STRING: | |
9285 | 2124 if (!setting->value.string) |
7693 | 2125 return; |
2126 | |
2127 type = "string"; | |
2128 data_val = g_markup_escape_text(setting->value.string, -1); | |
2129 break; | |
2130 } | |
2131 | |
2132 /* this can't happen */ | |
9285 | 2133 if (!type || !data_val) |
7693 | 2134 return; |
2135 | |
9285 | 2136 for (i=0; i<indent; i++) fprintf(file, "\t"); |
7693 | 2137 |
2138 key_val = g_markup_escape_text(key, -1); | |
2139 fprintf(file, "<setting name=\"%s\" type=\"%s\">%s</setting>\n", key_val, type, | |
2140 data_val); | |
2141 | |
2142 g_free(key_val); | |
2143 g_free(data_val); | |
2144 } | |
2145 | |
5228 | 2146 static void blist_print_group_settings(gpointer key, gpointer data, |
9285 | 2147 gpointer user_data) |
2148 { | |
7693 | 2149 blist_print_setting(key, data, user_data, 3); |
5228 | 2150 } |
2151 | |
2152 static void blist_print_buddy_settings(gpointer key, gpointer data, | |
9285 | 2153 gpointer user_data) |
2154 { | |
7693 | 2155 blist_print_setting(key, data, user_data, 5); |
5228 | 2156 } |
2157 | |
6695 | 2158 static void blist_print_cnode_settings(gpointer key, gpointer data, |
9285 | 2159 gpointer user_data) |
2160 { | |
7693 | 2161 blist_print_setting(key, data, user_data, 4); |
6695 | 2162 } |
2163 | |
5234 | 2164 static void blist_print_chat_components(gpointer key, gpointer data, |
2165 gpointer user_data) { | |
2166 char *key_val; | |
2167 char *data_val; | |
2168 FILE *file = user_data; | |
2169 | |
9285 | 2170 if (!key || !data) |
5234 | 2171 return; |
2172 | |
2173 key_val = g_markup_escape_text(key, -1); | |
2174 data_val = g_markup_escape_text(data, -1); | |
2175 | |
2176 fprintf(file, "\t\t\t\t<component name=\"%s\">%s</component>\n", key_val, | |
2177 data_val); | |
2178 g_free(key_val); | |
2179 g_free(data_val); | |
2180 } | |
2181 | |
9285 | 2182 static void print_buddy(FILE *file, GaimBuddy *buddy) |
2183 { | |
6695 | 2184 char *bud_name = g_markup_escape_text(buddy->name, -1); |
2185 char *bud_alias = NULL; | |
2186 char *acct_name = g_markup_escape_text(buddy->account->username, -1); | |
9285 | 2187 if (buddy->alias) |
6695 | 2188 bud_alias= g_markup_escape_text(buddy->alias, -1); |
9460 | 2189 fprintf(file, "\t\t\t\t<buddy account=\"%s\" proto=\"%s\">\n", acct_name, |
7153 | 2190 gaim_account_get_protocol_id(buddy->account)); |
2191 | |
6695 | 2192 fprintf(file, "\t\t\t\t\t<name>%s</name>\n", bud_name); |
9285 | 2193 if (bud_alias) { |
6695 | 2194 fprintf(file, "\t\t\t\t\t<alias>%s</alias>\n", bud_alias); |
2195 } | |
7726 | 2196 g_hash_table_foreach(buddy->node.settings, blist_print_buddy_settings, file); |
6695 | 2197 fprintf(file, "\t\t\t\t</buddy>\n"); |
2198 g_free(bud_name); | |
2199 g_free(bud_alias); | |
2200 g_free(acct_name); | |
2201 } | |
2202 | |
9787 | 2203 |
2204 /* check for flagging and account exclusion on buddy */ | |
2205 static gboolean blist_buddy_should_save(GaimAccount *exp_acct, GaimBuddy *buddy) | |
2206 { | |
2207 if (! GAIM_BLIST_NODE_SHOULD_SAVE((GaimBlistNode *) buddy)) | |
2208 return FALSE; | |
2209 | |
2210 if (exp_acct && buddy->account != exp_acct) | |
2211 return FALSE; | |
2212 | |
2213 return TRUE; | |
2214 } | |
2215 | |
2216 | |
2217 static void blist_write_buddy(FILE *file, GaimAccount *exp_acct, GaimBuddy *buddy) | |
2218 { | |
2219 if (blist_buddy_should_save(exp_acct, buddy)) | |
2220 print_buddy(file, buddy); | |
2221 } | |
2222 | |
2223 | |
2224 /* check for flagging and account exclusion on contact and all members */ | |
2225 static gboolean blist_contact_should_save(GaimAccount *exp_acct, GaimContact *contact) | |
2226 { | |
2227 GaimBlistNode *bnode, *cnode = (GaimBlistNode *) contact; | |
2228 | |
2229 if (! GAIM_BLIST_NODE_SHOULD_SAVE(cnode)) | |
2230 return FALSE; | |
2231 | |
2232 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
2233 if (! GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
2234 continue; | |
2235 | |
2236 if (blist_buddy_should_save(exp_acct, (GaimBuddy *) bnode)) | |
2237 return TRUE; | |
2238 } | |
2239 | |
2240 return FALSE; | |
2241 } | |
2242 | |
2243 | |
2244 static void blist_write_contact(FILE *file, GaimAccount *exp_acct, GaimContact *contact) | |
2245 { | |
2246 GaimBlistNode *bnode, *cnode = (GaimBlistNode *) contact; | |
2247 | |
2248 if (! blist_contact_should_save(exp_acct, contact)) | |
2249 return; | |
2250 | |
2251 fprintf(file, "\t\t\t<contact"); | |
2252 if (contact->alias) { | |
2253 char *alias = g_markup_escape_text(contact->alias, -1); | |
2254 fprintf(file, " alias=\"%s\"", alias); | |
2255 g_free(alias); | |
2256 } | |
2257 fprintf(file, ">\n"); | |
2258 | |
2259 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
2260 if (GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
2261 blist_write_buddy(file, exp_acct, (GaimBuddy *) bnode); | |
2262 } | |
2263 } | |
2264 | |
2265 g_hash_table_foreach(cnode->settings, blist_print_cnode_settings, file); | |
2266 fprintf(file, "\t\t\t</contact>\n"); | |
2267 } | |
2268 | |
2269 | |
2270 static void blist_write_chat(FILE *file, GaimAccount *exp_acct, GaimChat *chat) | |
2271 { | |
2272 char *acct_name; | |
2273 | |
2274 if (! GAIM_BLIST_NODE_SHOULD_SAVE((GaimBlistNode *) chat)) | |
2275 return; | |
2276 | |
2277 if (exp_acct && chat->account != exp_acct) | |
2278 return; | |
2279 | |
2280 acct_name = g_markup_escape_text(chat->account->username, -1); | |
2281 fprintf(file, "\t\t\t<chat proto=\"%s\" account=\"%s\">\n", | |
2282 gaim_account_get_protocol_id(chat->account), acct_name); | |
2283 g_free(acct_name); | |
2284 | |
2285 if (chat->alias) { | |
2286 char *chat_alias = g_markup_escape_text(chat->alias, -1); | |
2287 fprintf(file, "\t\t\t\t<alias>%s</alias>\n", chat_alias); | |
2288 g_free(chat_alias); | |
2289 } | |
2290 | |
2291 g_hash_table_foreach(chat->components, blist_print_chat_components, file); | |
2292 g_hash_table_foreach(chat->node.settings, blist_print_cnode_settings, file); | |
2293 | |
2294 fprintf(file, "\t\t\t</chat>\n"); | |
2295 } | |
2296 | |
2297 | |
2298 static void blist_write_group(FILE *file, GaimAccount *exp_acct, GaimGroup *group) | |
2299 { | |
2300 GaimBlistNode *cnode, *gnode = (GaimBlistNode *) group; | |
2301 char *group_name; | |
2302 | |
2303 if (! GAIM_BLIST_NODE_SHOULD_SAVE(gnode)) | |
2304 return; | |
2305 | |
2306 if (exp_acct && ! gaim_group_on_account(group, exp_acct)) | |
2307 return; | |
2308 | |
2309 group_name = g_markup_escape_text(group->name, -1); | |
2310 fprintf(file, "\t\t<group name=\"%s\">\n", group_name); | |
2311 g_free(group_name); | |
2312 | |
2313 g_hash_table_foreach(group->node.settings, | |
2314 blist_print_group_settings, file); | |
2315 | |
2316 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
2317 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
2318 blist_write_contact(file, exp_acct, (GaimContact *) cnode); | |
2319 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { | |
2320 blist_write_chat(file, exp_acct, (GaimChat *) cnode); | |
2321 } | |
2322 } | |
2323 | |
2324 fprintf(file, "\t\t</group>\n"); | |
2325 } | |
2326 | |
2327 | |
2328 static void blist_write_privacy_account(FILE *file, GaimAccount *exp_acct, GaimAccount *account) | |
2329 { | |
2330 char *acct_name; | |
2331 GSList *buds; | |
2332 | |
2333 if(exp_acct && exp_acct != account) | |
2334 return; | |
2335 | |
2336 acct_name = g_markup_escape_text(account->username, -1); | |
2337 fprintf(file, "\t\t<account proto=\"%s\" name=\"%s\" mode=\"%d\">\n", | |
2338 gaim_account_get_protocol_id(account), | |
2339 acct_name, account->perm_deny); | |
2340 g_free(acct_name); | |
2341 | |
2342 for (buds = account->permit; buds; buds = buds->next) { | |
2343 char *bud_name = g_markup_escape_text(buds->data, -1); | |
2344 fprintf(file, "\t\t\t<permit>%s</permit>\n", bud_name); | |
2345 g_free(bud_name); | |
2346 } | |
2347 | |
2348 for (buds = account->deny; buds; buds = buds->next) { | |
2349 char *bud_name = g_markup_escape_text(buds->data, -1); | |
2350 fprintf(file, "\t\t\t<block>%s</block>\n", bud_name); | |
2351 g_free(bud_name); | |
2352 } | |
2353 | |
2354 fprintf(file, "\t\t</account>\n"); | |
2355 } | |
2356 | |
2357 | |
9285 | 2358 static void gaim_blist_write(FILE *file, GaimAccount *exp_acct) |
2359 { | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2360 GList *accounts; |
9787 | 2361 GaimBlistNode *gnode; |
2362 | |
5228 | 2363 fprintf(file, "<?xml version='1.0' encoding='UTF-8' ?>\n"); |
2364 fprintf(file, "<gaim version=\"1\">\n"); | |
2365 fprintf(file, "\t<blist>\n"); | |
2366 | |
9285 | 2367 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
9787 | 2368 if (GAIM_BLIST_NODE_IS_GROUP(gnode)) |
2369 blist_write_group(file, exp_acct, (GaimGroup *) gnode); | |
5228 | 2370 } |
2371 | |
2372 fprintf(file, "\t</blist>\n"); | |
2373 fprintf(file, "\t<privacy>\n"); | |
2374 | |
9787 | 2375 for (accounts = gaim_accounts_get_all(); accounts; accounts = accounts->next) { |
2376 blist_write_privacy_account(file, exp_acct, (GaimAccount *) accounts->data); | |
5228 | 2377 } |
2378 | |
2379 fprintf(file, "\t</privacy>\n"); | |
2380 fprintf(file, "</gaim>\n"); | |
2381 } | |
2382 | |
9787 | 2383 |
9285 | 2384 void gaim_blist_sync() |
2385 { | |
5228 | 2386 FILE *file; |
2387 char *user_dir = gaim_user_dir(); | |
2388 char *filename; | |
2389 char *filename_real; | |
2390 | |
9285 | 2391 if (!user_dir) |
5228 | 2392 return; |
9285 | 2393 |
2394 if (!blist_safe_to_write) { | |
5228 | 2395 gaim_debug(GAIM_DEBUG_WARNING, "blist save", |
2396 "AHH!! Tried to write the blist before we read it!\n"); | |
2397 return; | |
2398 } | |
2399 | |
2400 file = fopen(user_dir, "r"); | |
9285 | 2401 if (!file) |
5228 | 2402 mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); |
2403 else | |
2404 fclose(file); | |
2405 | |
2406 filename = g_build_filename(user_dir, "blist.xml.save", NULL); | |
2407 | |
9285 | 2408 if ((file = fopen(filename, "w"))) { |
5228 | 2409 gaim_blist_write(file, NULL); |
2410 fclose(file); | |
2411 chmod(filename, S_IRUSR | S_IWUSR); | |
2412 } else { | |
2413 gaim_debug(GAIM_DEBUG_ERROR, "blist save", "Unable to write %s\n", | |
2414 filename); | |
8549 | 2415 g_free(filename); |
2416 return; | |
5228 | 2417 } |
2418 | |
2419 filename_real = g_build_filename(user_dir, "blist.xml", NULL); | |
2420 | |
9285 | 2421 if (rename(filename, filename_real) < 0) |
5228 | 2422 gaim_debug(GAIM_DEBUG_ERROR, "blist save", |
2423 "Error renaming %s to %s\n", filename, filename_real); | |
2424 | |
2425 | |
2426 g_free(filename); | |
2427 g_free(filename_real); | |
2428 } | |
2429 | |
7693 | 2430 |
2431 static void gaim_blist_node_setting_free(struct gaim_blist_node_setting *setting) | |
2432 { | |
2433 switch(setting->type) { | |
2434 case GAIM_BLIST_NODE_SETTING_BOOL: | |
2435 case GAIM_BLIST_NODE_SETTING_INT: | |
2436 break; | |
2437 case GAIM_BLIST_NODE_SETTING_STRING: | |
2438 g_free(setting->value.string); | |
2439 break; | |
2440 } | |
8020 | 2441 g_free(setting); |
7693 | 2442 } |
2443 | |
9285 | 2444 static void gaim_blist_node_initialize_settings(GaimBlistNode *node) |
7693 | 2445 { |
9285 | 2446 if (node->settings) |
5228 | 2447 return; |
7693 | 2448 |
2449 node->settings = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, | |
2450 (GDestroyNotify)gaim_blist_node_setting_free); | |
2451 } | |
2452 | |
2453 void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key) | |
2454 { | |
2455 g_return_if_fail(node != NULL); | |
2456 g_return_if_fail(node->settings != NULL); | |
2457 g_return_if_fail(key != NULL); | |
2458 | |
2459 g_hash_table_remove(node->settings, key); | |
9285 | 2460 |
2461 schedule_blist_save(); | |
5228 | 2462 } |
2463 | |
7693 | 2464 |
2465 void gaim_blist_node_set_bool(GaimBlistNode* node, const char *key, gboolean value) | |
2466 { | |
2467 struct gaim_blist_node_setting *setting; | |
2468 | |
2469 g_return_if_fail(node != NULL); | |
2470 g_return_if_fail(node->settings != NULL); | |
2471 g_return_if_fail(key != NULL); | |
2472 | |
2473 setting = g_new0(struct gaim_blist_node_setting, 1); | |
2474 setting->type = GAIM_BLIST_NODE_SETTING_BOOL; | |
2475 setting->value.boolean = value; | |
2476 | |
2477 g_hash_table_replace(node->settings, g_strdup(key), setting); | |
9285 | 2478 |
2479 schedule_blist_save(); | |
7693 | 2480 } |
2481 | |
2482 gboolean gaim_blist_node_get_bool(GaimBlistNode* node, const char *key) | |
2483 { | |
2484 struct gaim_blist_node_setting *setting; | |
2485 | |
2486 g_return_val_if_fail(node != NULL, FALSE); | |
2487 g_return_val_if_fail(node->settings != NULL, FALSE); | |
2488 g_return_val_if_fail(key != NULL, FALSE); | |
2489 | |
2490 setting = g_hash_table_lookup(node->settings, key); | |
2491 | |
9285 | 2492 if (!setting) |
7849 | 2493 return FALSE; |
2494 | |
7848 | 2495 g_return_val_if_fail(setting->type == GAIM_BLIST_NODE_SETTING_BOOL, FALSE); |
2496 | |
2497 return setting->value.boolean; | |
5228 | 2498 } |
2499 | |
7693 | 2500 void gaim_blist_node_set_int(GaimBlistNode* node, const char *key, int value) |
2501 { | |
2502 struct gaim_blist_node_setting *setting; | |
2503 | |
2504 g_return_if_fail(node != NULL); | |
2505 g_return_if_fail(node->settings != NULL); | |
2506 g_return_if_fail(key != NULL); | |
2507 | |
2508 setting = g_new0(struct gaim_blist_node_setting, 1); | |
8071 | 2509 setting->type = GAIM_BLIST_NODE_SETTING_INT; |
7693 | 2510 setting->value.integer = value; |
2511 | |
2512 g_hash_table_replace(node->settings, g_strdup(key), setting); | |
9285 | 2513 |
2514 schedule_blist_save(); | |
7693 | 2515 } |
2516 | |
2517 int gaim_blist_node_get_int(GaimBlistNode* node, const char *key) | |
2518 { | |
2519 struct gaim_blist_node_setting *setting; | |
2520 | |
2521 g_return_val_if_fail(node != NULL, 0); | |
2522 g_return_val_if_fail(node->settings != NULL, 0); | |
2523 g_return_val_if_fail(key != NULL, 0); | |
2524 | |
2525 setting = g_hash_table_lookup(node->settings, key); | |
2526 | |
9285 | 2527 if (!setting) |
7849 | 2528 return 0; |
2529 | |
7848 | 2530 g_return_val_if_fail(setting->type == GAIM_BLIST_NODE_SETTING_INT, 0); |
2531 | |
2532 return setting->value.integer; | |
7693 | 2533 } |
2534 | |
2535 void gaim_blist_node_set_string(GaimBlistNode* node, const char *key, | |
5906 | 2536 const char *value) |
2537 { | |
7693 | 2538 struct gaim_blist_node_setting *setting; |
2539 | |
2540 g_return_if_fail(node != NULL); | |
2541 g_return_if_fail(node->settings != NULL); | |
2542 g_return_if_fail(key != NULL); | |
2543 | |
2544 setting = g_new0(struct gaim_blist_node_setting, 1); | |
2545 setting->type = GAIM_BLIST_NODE_SETTING_STRING; | |
2546 setting->value.string = g_strdup(value); | |
2547 | |
2548 g_hash_table_replace(node->settings, g_strdup(key), setting); | |
9285 | 2549 |
2550 schedule_blist_save(); | |
7693 | 2551 } |
2552 | |
2553 const char *gaim_blist_node_get_string(GaimBlistNode* node, const char *key) | |
2554 { | |
2555 struct gaim_blist_node_setting *setting; | |
2556 | |
2557 g_return_val_if_fail(node != NULL, NULL); | |
2558 g_return_val_if_fail(node->settings != NULL, NULL); | |
2559 g_return_val_if_fail(key != NULL, NULL); | |
2560 | |
2561 setting = g_hash_table_lookup(node->settings, key); | |
2562 | |
9285 | 2563 if (!setting) |
7849 | 2564 return NULL; |
2565 | |
7848 | 2566 g_return_val_if_fail(setting->type == GAIM_BLIST_NODE_SETTING_STRING, NULL); |
2567 | |
2568 return setting->value.string; | |
7693 | 2569 } |
2570 | |
9285 | 2571 GList *gaim_blist_node_get_extended_menu(GaimBlistNode *n) |
7693 | 2572 { |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2573 GList *menu = NULL; |
9030 | 2574 |
2575 g_return_val_if_fail(n, NULL); | |
2576 | |
2577 gaim_signal_emit(gaim_blist_get_handle(), | |
2578 "blist-node-extended-menu", | |
2579 n, &menu); | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2580 return menu; |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2581 } |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2582 |
9030 | 2583 |
2584 GaimBlistNodeAction * | |
2585 gaim_blist_node_action_new(char *label, | |
2586 void (*callback)(GaimBlistNode *, gpointer), | |
2587 gpointer data) | |
2588 { | |
2589 GaimBlistNodeAction *act = g_new0(GaimBlistNodeAction, 1); | |
2590 act->label = label; | |
2591 act->callback = callback; | |
2592 act->data = data; | |
2593 return act; | |
8952 | 2594 } |
2595 | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2596 |
9285 | 2597 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline) |
2598 { | |
2599 if (!group) | |
5228 | 2600 return 0; |
2601 | |
5277 | 2602 return offline ? group->totalsize : group->currentsize; |
5228 | 2603 } |
2604 | |
9285 | 2605 int gaim_blist_get_group_online_count(GaimGroup *group) |
2606 { | |
2607 if (!group) | |
5228 | 2608 return 0; |
2609 | |
5277 | 2610 return group->online; |
5228 | 2611 } |
2612 | |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2613 void |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2614 gaim_blist_set_ui_ops(GaimBlistUiOps *ops) |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2615 { |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2616 blist_ui_ops = ops; |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2617 } |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2618 |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2619 GaimBlistUiOps * |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2620 gaim_blist_get_ui_ops(void) |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2621 { |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2622 return blist_ui_ops; |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2623 } |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2624 |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2625 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2626 void * |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2627 gaim_blist_get_handle(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2628 { |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2629 static int handle; |
5228 | 2630 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2631 return &handle; |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2632 } |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2633 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2634 void |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2635 gaim_blist_init(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2636 { |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2637 void *handle = gaim_blist_get_handle(); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2638 |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2639 gaim_signal_register(handle, "buddy-away", |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2640 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2641 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2642 GAIM_SUBTYPE_BLIST_BUDDY)); |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2643 |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2644 gaim_signal_register(handle, "buddy-back", |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2645 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2646 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2647 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2648 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2649 gaim_signal_register(handle, "buddy-idle", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2650 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2651 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2652 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2653 gaim_signal_register(handle, "buddy-unidle", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2654 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2655 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2656 GAIM_SUBTYPE_BLIST_BUDDY)); |
9109
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2657 gaim_signal_register(handle, "buddy-idle-updated", |
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2658 gaim_marshal_VOID__POINTER, NULL, 1, |
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2659 gaim_value_new(GAIM_TYPE_SUBTYPE, |
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2660 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2661 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2662 gaim_signal_register(handle, "buddy-signed-on", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2663 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2664 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2665 GAIM_SUBTYPE_BLIST_BUDDY)); |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2666 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2667 gaim_signal_register(handle, "buddy-signed-off", |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2668 gaim_marshal_VOID__POINTER, NULL, 1, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2669 gaim_value_new(GAIM_TYPE_SUBTYPE, |
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2670 GAIM_SUBTYPE_BLIST_BUDDY)); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2671 |
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2672 gaim_signal_register(handle, "update-idle", gaim_marshal_VOID, NULL, 0); |
9030 | 2673 |
2674 gaim_signal_register(handle, "blist-node-extended-menu", | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2675 gaim_marshal_VOID__POINTER_POINTER, NULL, 2, |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2676 gaim_value_new(GAIM_TYPE_SUBTYPE, |
9030 | 2677 GAIM_SUBTYPE_BLIST_NODE), |
8952 | 2678 gaim_value_new(GAIM_TYPE_BOXED, "GList **")); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2679 } |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2680 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2681 void |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2682 gaim_blist_uninit(void) |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2683 { |
9285 | 2684 if (blist_save_timer != 0) { |
2685 gaim_timeout_remove(blist_save_timer); | |
2686 blist_save_timer = 0; | |
2687 gaim_blist_sync(); | |
2688 } | |
2689 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2690 gaim_signals_unregister_by_instance(gaim_blist_get_handle()); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2691 } |