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