Mercurial > pidgin
annotate src/blist.c @ 9740:2bb5e2cd64bd
[gaim-migrate @ 10605]
" A few days back, someone on #gaim was wondering how to
block IM's from IRC, which isn't supported by gaim, as
this isn't supported at a protocol level. I decided to
implement gaim's privacy options (permit lists, deny
lists, block all users, and permit people on buddy
list) at a local level for IRC and
Zephyr. Jabber, SILC, and Trepia don't seem to support
deny or permit lists in Gaim, but I don't use the
latter two protocols and wasn't sure about how to
implemnt in in Jabber.
When implementing it, I noticed that changes in privacy
settings didn't automatically cause blist.xml to get
scheduled
for writing (even on exit). To fix this, I needed to
make schedule_blist_save in blist.c non-static and call
it from serv_set_permit_deny() in server.c, and
gaim_privacy_{permit,deny}_{add,remove} in privacy.c ." --Arun A Tharuvai
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Wed, 11 Aug 2004 23:52:48 +0000 |
| parents | db62420a53a2 |
| children | b10d4c6ac7eb |
| 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 | |
| 9740 | 168 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 | |
| 6695 | 921 GaimGroup *gaim_group_new(const char *name) |
| 922 { | |
| 9285 | 923 GaimBlistUiOps *ops = gaim_blist_get_ui_ops(); |
| 924 GaimGroup *group = gaim_find_group(name); | |
| 925 | |
| 926 if (group != NULL) | |
| 927 return group; | |
| 928 | |
| 929 group = g_new0(GaimGroup, 1); | |
| 930 group->name = g_strdup(name); | |
| 931 group->totalsize = 0; | |
| 932 group->currentsize = 0; | |
| 933 group->online = 0; | |
| 934 gaim_blist_node_initialize_settings((GaimBlistNode *)group); | |
| 935 ((GaimBlistNode *)group)->type = GAIM_BLIST_GROUP_NODE; | |
| 936 | |
| 937 if (ops && ops->new_node) | |
| 938 ops->new_node((GaimBlistNode *)group); | |
| 939 | |
| 940 return group; | |
| 5228 | 941 } |
| 942 | |
| 6695 | 943 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node) |
| 944 { | |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
945 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 6695 | 946 GaimGroup *g; |
| 6742 | 947 GaimBlistNode *gnode, *cnode, *bnode; |
| 9285 | 948 gboolean empty_contact = FALSE; |
| 6695 | 949 |
| 6774 | 950 g_return_if_fail(contact != NULL); |
| 951 g_return_if_fail(GAIM_BLIST_NODE_IS_CONTACT((GaimBlistNode*)contact)); | |
| 6695 | 952 |
| 9285 | 953 if ((GaimBlistNode*)contact == node) |
| 6975 | 954 return; |
| 955 | |
| 9285 | 956 if (node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
| 6695 | 957 GAIM_BLIST_NODE_IS_CHAT(node))) |
| 958 g = (GaimGroup*)node->parent; | |
| 9285 | 959 else if (group) |
| 6695 | 960 g = group; |
| 961 else { | |
| 962 g = gaim_group_new(_("Buddies")); | |
| 963 gaim_blist_add_group(g, | |
| 964 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 965 } | |
| 966 | |
| 967 gnode = (GaimBlistNode*)g; | |
| 968 cnode = (GaimBlistNode*)contact; | |
| 969 | |
| 9285 | 970 if (cnode->parent) { |
| 971 if (cnode->parent->child == cnode) | |
| 6731 | 972 cnode->parent->child = cnode->next; |
| 9285 | 973 if (cnode->prev) |
| 6695 | 974 cnode->prev->next = cnode->next; |
| 9285 | 975 if (cnode->next) |
| 6695 | 976 cnode->next->prev = cnode->prev; |
| 977 | |
| 978 | |
| 9285 | 979 if (contact->online > 0) |
| 6695 | 980 ((GaimGroup*)cnode->parent)->online--; |
| 9285 | 981 if (contact->currentsize > 0) |
| 6695 | 982 ((GaimGroup*)cnode->parent)->currentsize--; |
| 983 ((GaimGroup*)cnode->parent)->totalsize--; | |
| 984 | |
| 6731 | 985 ops->remove(gaimbuddylist, cnode); |
| 986 | |
| 9285 | 987 schedule_blist_save(); |
| 988 | |
| 989 if (cnode->parent != gnode) { | |
| 990 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 6742 | 991 GaimBuddy *b = (GaimBuddy*)bnode; |
| 992 | |
| 993 struct _gaim_hbuddy *hb = g_new(struct _gaim_hbuddy, 1); | |
| 7261 | 994 hb->name = g_strdup(gaim_normalize(b->account, b->name)); |
| 6742 | 995 hb->account = b->account; |
| 996 hb->group = cnode->parent; | |
| 997 | |
| 6776 | 998 g_hash_table_remove(gaimbuddylist->buddies, hb); |
| 6742 | 999 |
| 9285 | 1000 if (!gaim_find_buddy_in_group(b->account, b->name, g)) { |
| 8328 | 1001 hb->group = gnode; |
| 1002 g_hash_table_replace(gaimbuddylist->buddies, hb, b); | |
| 1003 | |
| 9285 | 1004 if (b->account->gc) |
| 1005 serv_move_buddy(b, (GaimGroup *)cnode->parent, g); | |
| 8328 | 1006 } else { |
| 1007 /* this buddy already exists in the group, so we're | |
| 1008 * gonna delete it instead */ | |
| 1009 g_free(hb->name); | |
| 1010 g_free(hb); | |
| 9285 | 1011 if (b->account->gc) |
| 1012 serv_remove_buddy(b->account->gc, b, (GaimGroup *)cnode->parent); | |
| 1013 | |
| 1014 if (!cnode->child->next) | |
| 8328 | 1015 empty_contact = TRUE; |
| 1016 gaim_blist_remove_buddy(b); | |
| 1017 } | |
| 6742 | 1018 } |
| 1019 } | |
| 6695 | 1020 } |
| 1021 | |
| 9285 | 1022 if (empty_contact) |
| 8328 | 1023 return; |
| 1024 | |
| 6775 | 1025 |
| 9285 | 1026 if (node && (GAIM_BLIST_NODE_IS_CONTACT(node) || |
| 6695 | 1027 GAIM_BLIST_NODE_IS_CHAT(node))) { |
| 9285 | 1028 if (node->next) |
| 6695 | 1029 node->next->prev = cnode; |
| 1030 cnode->next = node->next; | |
| 1031 cnode->prev = node; | |
| 1032 cnode->parent = node->parent; | |
| 1033 node->next = cnode; | |
| 1034 } else { | |
| 9285 | 1035 if (gnode->child) |
| 6695 | 1036 gnode->child->prev = cnode; |
| 1037 cnode->prev = NULL; | |
| 1038 cnode->next = gnode->child; | |
| 1039 gnode->child = cnode; | |
| 1040 cnode->parent = gnode; | |
| 1041 } | |
| 1042 | |
| 9285 | 1043 if (contact->online > 0) |
| 6695 | 1044 g->online++; |
| 9285 | 1045 if (contact->currentsize > 0) |
| 6695 | 1046 g->currentsize++; |
| 1047 g->totalsize++; | |
| 1048 | |
| 9285 | 1049 schedule_blist_save(); |
| 1050 | |
| 1051 if (ops && cnode->child) | |
| 6695 | 1052 ops->update(gaimbuddylist, cnode); |
| 6775 | 1053 |
| 9285 | 1054 for (bnode = cnode->child; bnode; bnode = bnode->next) |
| 6775 | 1055 ops->update(gaimbuddylist, bnode); |
| 6695 | 1056 } |
| 1057 | |
| 7246 | 1058 void gaim_blist_merge_contact(GaimContact *source, GaimBlistNode *node) |
| 6965 | 1059 { |
| 1060 GaimBlistNode *sourcenode = (GaimBlistNode*)source; | |
| 7246 | 1061 GaimBlistNode *targetnode; |
| 1062 GaimBlistNode *prev, *cur, *next; | |
| 1063 GaimContact *target; | |
| 1064 | |
| 9285 | 1065 g_return_if_fail(source != NULL); |
| 1066 g_return_if_fail(node != NULL); | |
| 1067 | |
| 1068 if (GAIM_BLIST_NODE_IS_CONTACT(node)) { | |
| 1069 target = (GaimContact *)node; | |
| 7246 | 1070 prev = gaim_blist_get_last_child(node); |
| 9285 | 1071 } else if (GAIM_BLIST_NODE_IS_BUDDY(node)) { |
| 1072 target = (GaimContact *)node->parent; | |
| 7246 | 1073 prev = node; |
| 1074 } else { | |
| 6965 | 1075 return; |
| 7246 | 1076 } |
| 1077 | |
| 9285 | 1078 if (source == target || !target) |
| 7246 | 1079 return; |
| 1080 | |
| 9285 | 1081 targetnode = (GaimBlistNode *)target; |
| 7246 | 1082 next = sourcenode->child; |
| 1083 | |
| 9285 | 1084 while (next) { |
| 7246 | 1085 cur = next; |
| 1086 next = cur->next; | |
| 9285 | 1087 if (GAIM_BLIST_NODE_IS_BUDDY(cur)) { |
| 1088 gaim_blist_add_buddy((GaimBuddy *)cur, target, NULL, prev); | |
| 7246 | 1089 prev = cur; |
| 1090 } | |
| 6965 | 1091 } |
| 1092 } | |
| 1093 | |
| 9285 | 1094 void gaim_blist_add_group(GaimGroup *group, GaimBlistNode *node) |
| 5228 | 1095 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1096 GaimBlistUiOps *ops; |
| 5228 | 1097 GaimBlistNode *gnode = (GaimBlistNode*)group; |
| 1098 | |
| 6774 | 1099 g_return_if_fail(group != NULL); |
| 9285 | 1100 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP((GaimBlistNode *)group)); |
| 1101 | |
| 5228 | 1102 ops = gaimbuddylist->ui_ops; |
| 1103 | |
| 1104 if (!gaimbuddylist->root) { | |
| 1105 gaimbuddylist->root = gnode; | |
| 1106 return; | |
| 1107 } | |
| 1108 | |
| 1109 /* if we're moving to overtop of ourselves, do nothing */ | |
| 9285 | 1110 if (gnode == node) |
| 5228 | 1111 return; |
| 1112 | |
| 1113 if (gaim_find_group(group->name)) { | |
| 1114 /* This is just being moved */ | |
| 1115 | |
| 9285 | 1116 ops->remove(gaimbuddylist, (GaimBlistNode *)group); |
| 1117 | |
| 1118 if (gnode == gaimbuddylist->root) | |
| 5228 | 1119 gaimbuddylist->root = gnode->next; |
| 9285 | 1120 if (gnode->prev) |
| 5228 | 1121 gnode->prev->next = gnode->next; |
| 9285 | 1122 if (gnode->next) |
| 5228 | 1123 gnode->next->prev = gnode->prev; |
| 1124 } | |
| 1125 | |
| 6695 | 1126 if (node && GAIM_BLIST_NODE_IS_GROUP(node)) { |
| 5634 | 1127 gnode->next = node->next; |
| 1128 gnode->prev = node; | |
| 9285 | 1129 if (node->next) |
| 5634 | 1130 node->next->prev = gnode; |
| 1131 node->next = gnode; | |
| 1132 } else { | |
| 9285 | 1133 if (gaimbuddylist->root) |
| 6807 | 1134 gaimbuddylist->root->prev = gnode; |
| 5634 | 1135 gnode->next = gaimbuddylist->root; |
| 1136 gnode->prev = NULL; | |
| 1137 gaimbuddylist->root = gnode; | |
| 1138 } | |
| 1139 | |
| 9285 | 1140 schedule_blist_save(); |
| 1141 | |
| 1142 if (ops && ops->update) { | |
| 5228 | 1143 ops->update(gaimbuddylist, gnode); |
| 9285 | 1144 for (node = gnode->child; node; node = node->next) |
| 5228 | 1145 ops->update(gaimbuddylist, node); |
| 1146 } | |
| 1147 } | |
| 1148 | |
| 9285 | 1149 void gaim_blist_remove_contact(GaimContact *contact) |
| 5228 | 1150 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1151 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 1152 GaimBlistNode *node, *gnode; |
| 1153 | |
| 1154 g_return_if_fail(contact != NULL); | |
| 1155 | |
| 1156 node = (GaimBlistNode *)contact; | |
| 1157 gnode = node->parent; | |
| 1158 | |
| 1159 if (node->child) { | |
| 1160 /* | |
| 1161 * If this contact has children then remove them. When the last | |
| 1162 * buddy is removed from the contact, the contact is deleted. | |
| 1163 */ | |
| 1164 while (node->child) { | |
| 1165 gaim_blist_remove_buddy((GaimBuddy*)node->child); | |
| 6695 | 1166 } |
| 1167 } else { | |
| 9285 | 1168 /* Remove the node from its parent */ |
| 1169 if (gnode->child == node) | |
| 1170 gnode->child = node->next; | |
| 1171 if (node->prev) | |
| 1172 node->prev->next = node->next; | |
| 1173 if (node->next) | |
| 1174 node->next->prev = node->prev; | |
| 1175 | |
| 1176 schedule_blist_save(); | |
| 1177 | |
| 1178 /* Update the UI */ | |
| 1179 if (ops && ops->remove) | |
| 1180 ops->remove(gaimbuddylist, node); | |
| 1181 | |
| 1182 /* Delete the node */ | |
| 6695 | 1183 g_free(contact); |
| 1184 } | |
| 1185 } | |
| 1186 | |
| 9285 | 1187 void gaim_blist_remove_buddy(GaimBuddy *buddy) |
| 6695 | 1188 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1189 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 1190 GaimBlistNode *node, *cnode, *gnode; |
| 1191 GaimContact *contact; | |
| 6695 | 1192 GaimGroup *group; |
| 6742 | 1193 struct _gaim_hbuddy hb; |
| 5228 | 1194 |
| 9285 | 1195 g_return_if_fail(buddy != NULL); |
| 1196 | |
| 1197 node = (GaimBlistNode *)buddy; | |
| 6695 | 1198 cnode = node->parent; |
| 9285 | 1199 gnode = cnode->parent; |
| 1200 contact = (GaimContact *)cnode; | |
| 1201 group = (GaimGroup *)gnode; | |
| 1202 | |
| 1203 /* Remove the node from its parent */ | |
| 5228 | 1204 if (node->prev) |
| 1205 node->prev->next = node->next; | |
| 1206 if (node->next) | |
| 1207 node->next->prev = node->prev; | |
| 9285 | 1208 if (cnode->child == node) |
| 6695 | 1209 cnode->child = node->next; |
| 9285 | 1210 |
| 1211 /* Adjust size counts */ | |
| 1212 if (GAIM_BUDDY_IS_ONLINE(buddy)) { | |
| 1213 contact->online--; | |
| 1214 if (contact->online == 0) | |
| 1215 group->online--; | |
| 6695 | 1216 } |
| 9285 | 1217 if (gaim_account_is_connected(buddy->account)) { |
| 1218 contact->currentsize--; | |
| 1219 if (contact->currentsize == 0) | |
| 1220 group->currentsize--; | |
| 8194 | 1221 } |
| 9285 | 1222 contact->totalsize--; |
| 1223 | |
| 1224 schedule_blist_save(); | |
| 1225 | |
| 1226 /* Re-sort the contact */ | |
| 1227 if (contact->priority == buddy) { | |
| 1228 gaim_contact_compute_priority_buddy(contact); | |
| 1229 if (ops && ops->update) | |
| 1230 ops->update(gaimbuddylist, cnode); | |
| 1231 } | |
| 1232 | |
| 1233 /* Remove this buddy from the buddies hash table */ | |
| 7261 | 1234 hb.name = g_strdup(gaim_normalize(buddy->account, buddy->name)); |
| 5247 | 1235 hb.account = buddy->account; |
| 6695 | 1236 hb.group = ((GaimBlistNode*)buddy)->parent->parent; |
| 6742 | 1237 g_hash_table_remove(gaimbuddylist->buddies, &hb); |
| 7162 | 1238 g_free(hb.name); |
| 5247 | 1239 |
| 9285 | 1240 /* Update the UI */ |
| 1241 if (ops && ops->remove) | |
| 1242 ops->remove(gaimbuddylist, node); | |
| 1243 | |
| 1244 /* Delete the node */ | |
| 1245 if (buddy->timer > 0) | |
|
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
1246 gaim_timeout_remove(buddy->timer); |
|
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1247 if (buddy->icon != NULL) |
|
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
1248 gaim_buddy_icon_unref(buddy->icon); |
| 7693 | 1249 g_hash_table_destroy(buddy->node.settings); |
| 5228 | 1250 g_free(buddy->name); |
| 1251 g_free(buddy->alias); | |
| 1252 g_free(buddy); | |
| 6755 | 1253 |
| 9285 | 1254 /* If the contact is empty then remove it */ |
| 1255 if (!cnode->child) | |
| 1256 gaim_blist_remove_contact(contact); | |
| 5228 | 1257 } |
| 1258 | |
| 9285 | 1259 void gaim_blist_remove_chat(GaimChat *chat) |
| 5234 | 1260 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1261 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 1262 GaimBlistNode *node, *gnode; |
| 6695 | 1263 GaimGroup *group; |
| 5234 | 1264 |
| 9285 | 1265 g_return_if_fail(chat != NULL); |
| 1266 | |
| 1267 node = (GaimBlistNode *)chat; | |
| 5234 | 1268 gnode = node->parent; |
| 6695 | 1269 group = (GaimGroup *)gnode; |
| 5234 | 1270 |
| 9285 | 1271 /* Remove the node from its parent */ |
| 1272 if (gnode->child == node) | |
| 5234 | 1273 gnode->child = node->next; |
| 1274 if (node->prev) | |
| 1275 node->prev->next = node->next; | |
| 1276 if (node->next) | |
| 1277 node->next->prev = node->prev; | |
| 9285 | 1278 |
| 1279 /* Adjust size counts */ | |
| 5855 | 1280 if (gaim_account_is_connected(chat->account)) { |
| 5394 | 1281 group->online--; |
| 9285 | 1282 group->currentsize--; |
| 5394 | 1283 } |
| 9285 | 1284 group->totalsize--; |
| 1285 | |
| 1286 schedule_blist_save(); | |
| 1287 | |
| 1288 /* Update the UI */ | |
| 1289 if (ops && ops->remove) | |
| 1290 ops->remove(gaimbuddylist, node); | |
| 1291 | |
| 1292 /* Delete the node */ | |
| 5234 | 1293 g_hash_table_destroy(chat->components); |
| 1294 g_free(chat->alias); | |
| 1295 g_free(chat); | |
| 1296 } | |
| 1297 | |
| 9285 | 1298 void gaim_blist_remove_group(GaimGroup *group) |
| 5228 | 1299 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1300 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 9285 | 1301 GaimBlistNode *node; |
|
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1302 GList *l; |
| 5228 | 1303 |
| 9285 | 1304 g_return_if_fail(group != NULL); |
| 1305 | |
| 1306 node = (GaimBlistNode *)group; | |
| 1307 | |
| 1308 /* Make sure the group is empty */ | |
| 1309 if (node->child) { | |
| 5228 | 1310 char *buf; |
| 1311 int count = 0; | |
| 9285 | 1312 GaimBlistNode *child; |
| 1313 | |
| 1314 for (child = node->child; child != NULL; child = child->next) | |
| 5228 | 1315 count++; |
| 1316 | |
| 6308 | 1317 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed " |
| 1318 "because its account was not logged in." | |
| 1319 " This buddy and the group were not " | |
| 1320 "removed.\n", | |
| 1321 "%d buddies from group %s were not " | |
| 1322 "removed because their accounts were " | |
| 6336 | 1323 "not logged in. These buddies and " |
| 1324 "the group were not removed.\n", count), | |
| 6308 | 1325 count, group->name); |
|
5541
aee0ee458974
[gaim-migrate @ 5941]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1326 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); |
| 5228 | 1327 g_free(buf); |
| 1328 return; | |
| 1329 } | |
| 1330 | |
| 9285 | 1331 /* Remove the node from its parent */ |
| 1332 if (gaimbuddylist->root == node) | |
| 5228 | 1333 gaimbuddylist->root = node->next; |
| 1334 if (node->prev) | |
| 1335 node->prev->next = node->next; | |
| 1336 if (node->next) | |
| 1337 node->next->prev = node->prev; | |
| 1338 | |
| 9285 | 1339 schedule_blist_save(); |
| 1340 | |
| 1341 /* Update the UI */ | |
| 1342 if (ops && ops->remove) | |
| 1343 ops->remove(gaimbuddylist, node); | |
| 1344 | |
| 1345 /* Remove the group from all accounts that are online */ | |
|
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1346 for (l = gaim_connections_get_all(); l != NULL; l = l->next) |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1347 { |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1348 GaimConnection *gc = (GaimConnection *)l->data; |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1349 |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1350 if (gaim_connection_get_state(gc) == GAIM_CONNECTED) |
| 9285 | 1351 serv_remove_group(gc, group); |
|
6885
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1352 } |
|
66dd420d3d23
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6872
diff
changeset
|
1353 |
| 9285 | 1354 /* Delete the node */ |
| 5228 | 1355 g_free(group->name); |
| 1356 g_free(group); | |
| 1357 } | |
| 1358 | |
| 9285 | 1359 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact) |
| 1360 { | |
| 1361 g_return_val_if_fail(contact != NULL, NULL); | |
| 1362 | |
| 6843 | 1363 return contact->priority; |
| 6695 | 1364 } |
| 1365 | |
| 9620 | 1366 const char *gaim_buddy_get_alias_only(GaimBuddy *buddy) |
| 9285 | 1367 { |
| 1368 g_return_val_if_fail(buddy != NULL, NULL); | |
| 1369 | |
| 1370 if ((buddy->alias != NULL) && (*buddy->alias != '\0')) { | |
| 1371 return buddy->alias; | |
| 1372 } else if ((buddy->server_alias != NULL) && | |
| 1373 (*buddy->server_alias != '\0') && | |
| 1374 (gaim_prefs_get_bool("/core/buddies/use_server_alias"))) { | |
| 1375 | |
| 1376 return buddy->server_alias; | |
|
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1377 } |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1378 |
|
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5541
diff
changeset
|
1379 return NULL; |
| 5228 | 1380 } |
| 1381 | |
| 9620 | 1382 |
| 1383 const char *gaim_buddy_get_contact_alias(GaimBuddy *buddy) | |
| 5228 | 1384 { |
| 9620 | 1385 GaimContact *c; |
| 1386 | |
| 1387 g_return_val_if_fail(buddy != NULL, NULL); | |
| 1388 | |
| 1389 /* Search for an alias for the buddy. In order of precedence: */ | |
| 1390 /* The buddy alias */ | |
| 1391 if (buddy->alias != NULL) | |
| 1392 return buddy->alias; | |
| 1393 | |
| 1394 /* The contact alias */ | |
| 1395 c = gaim_buddy_get_contact(buddy); | |
| 1396 if ((c != NULL) && (c->alias != NULL)) | |
| 1397 return c->alias; | |
| 1398 | |
| 1399 /* The server alias, if preferences say so */ | |
| 1400 if ((buddy->server_alias) && (*buddy->server_alias) && | |
| 1401 (gaim_prefs_get_bool("/core/buddies/use_server_alias"))) | |
| 1402 return buddy->server_alias; | |
| 1403 | |
| 1404 /* The buddy's user name (i.e. no alias) */ | |
| 1405 return buddy->name; | |
| 5228 | 1406 } |
| 1407 | |
| 9620 | 1408 |
| 1409 const char *gaim_buddy_get_alias(GaimBuddy *buddy) | |
| 1410 { | |
| 1411 g_return_val_if_fail(buddy != NULL, NULL); | |
| 1412 | |
| 1413 /* Search for an alias for the buddy. In order of precedence: */ | |
| 1414 /* The buddy alias */ | |
| 1415 if (buddy->alias != NULL) | |
| 1416 return buddy->alias; | |
| 1417 | |
| 1418 /* The server alias, if preferences say so */ | |
| 1419 if ((buddy->server_alias) && (*buddy->server_alias) && | |
| 1420 (gaim_prefs_get_bool("/core/buddies/use_server_alias"))) | |
| 1421 return buddy->server_alias; | |
| 1422 | |
| 1423 /* The buddy's user name (i.e. no alias) */ | |
| 1424 return buddy->name; | |
| 1425 } | |
| 1426 | |
| 1427 | |
| 7125 | 1428 const char *gaim_chat_get_name(GaimChat *chat) |
| 6744 | 1429 { |
| 9285 | 1430 struct proto_chat_entry *pce; |
| 1431 GList *parts, *tmp; | |
| 1432 char *ret; | |
| 1433 | |
| 1434 g_return_val_if_fail(chat != NULL, NULL); | |
| 1435 | |
| 1436 if ((chat->alias != NULL) && (*chat->alias != '\0')) | |
| 6744 | 1437 return chat->alias; |
| 9285 | 1438 |
| 1439 parts = GAIM_PLUGIN_PROTOCOL_INFO(chat->account->gc->prpl)->chat_info(chat->account->gc); | |
| 1440 pce = parts->data; | |
| 1441 ret = g_hash_table_lookup(chat->components, pce->identifier); | |
| 1442 for (tmp = parts; tmp; tmp = tmp->next) | |
| 1443 g_free(tmp->data); | |
| 1444 g_list_free(parts); | |
| 1445 | |
| 1446 return ret; | |
| 6744 | 1447 } |
| 1448 | |
| 6695 | 1449 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name) |
| 5228 | 1450 { |
| 6695 | 1451 GaimBuddy *buddy; |
| 5247 | 1452 struct _gaim_hbuddy hb; |
| 5758 | 1453 GaimBlistNode *group; |
| 5228 | 1454 |
| 9285 | 1455 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
| 1456 g_return_val_if_fail(account != NULL, NULL); | |
| 1457 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 5228 | 1458 |
| 7429 | 1459 hb.account = account; |
| 7261 | 1460 hb.name = g_strdup(gaim_normalize(account, name)); |
| 7429 | 1461 |
| 9285 | 1462 for (group = gaimbuddylist->root; group; group = group->next) { |
| 5758 | 1463 hb.group = group; |
| 7162 | 1464 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb))) { |
| 1465 g_free(hb.name); | |
| 5758 | 1466 return buddy; |
| 7162 | 1467 } |
| 5758 | 1468 } |
| 7162 | 1469 g_free(hb.name); |
| 9285 | 1470 |
| 5758 | 1471 return NULL; |
| 5228 | 1472 } |
| 1473 | |
| 6872 | 1474 GaimBuddy *gaim_find_buddy_in_group(GaimAccount *account, const char *name, |
| 1475 GaimGroup *group) | |
| 1476 { | |
| 1477 struct _gaim_hbuddy hb; | |
| 7162 | 1478 GaimBuddy *ret; |
| 6872 | 1479 |
| 9285 | 1480 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
| 1481 g_return_val_if_fail(account != NULL, NULL); | |
| 1482 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 6872 | 1483 |
| 7261 | 1484 hb.name = g_strdup(gaim_normalize(account, name)); |
| 6872 | 1485 hb.account = account; |
| 1486 hb.group = (GaimBlistNode*)group; | |
| 1487 | |
| 7162 | 1488 ret = g_hash_table_lookup(gaimbuddylist->buddies, &hb); |
| 1489 g_free(hb.name); | |
| 9285 | 1490 |
| 7162 | 1491 return ret; |
| 6872 | 1492 } |
| 1493 | |
| 6245 | 1494 GSList *gaim_find_buddies(GaimAccount *account, const char *name) |
| 1495 { | |
| 1496 struct buddy *buddy; | |
| 1497 struct _gaim_hbuddy hb; | |
| 9285 | 1498 GaimBlistNode *node; |
| 6245 | 1499 GSList *ret = NULL; |
| 1500 | |
| 9285 | 1501 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
| 1502 g_return_val_if_fail(account != NULL, NULL); | |
| 1503 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 6245 | 1504 |
| 7261 | 1505 hb.name = g_strdup(gaim_normalize(account, name)); |
| 6245 | 1506 hb.account = account; |
| 1507 | |
| 9285 | 1508 for (node = gaimbuddylist->root; node != NULL; node = node->next) { |
| 1509 hb.group = node; | |
| 6245 | 1510 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL) |
| 1511 ret = g_slist_append(ret, buddy); | |
| 1512 } | |
| 7162 | 1513 g_free(hb.name); |
| 9285 | 1514 |
| 6245 | 1515 return ret; |
| 1516 } | |
| 1517 | |
| 6695 | 1518 GaimGroup *gaim_find_group(const char *name) |
| 5228 | 1519 { |
| 1520 GaimBlistNode *node; | |
| 9285 | 1521 |
| 1522 g_return_val_if_fail(gaimbuddylist != NULL, NULL); | |
| 1523 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 1524 | |
| 1525 for (node = gaimbuddylist->root; node != NULL; node = node->next) { | |
| 6695 | 1526 if (!strcmp(((GaimGroup *)node)->name, name)) |
| 1527 return (GaimGroup *)node; | |
| 5228 | 1528 } |
| 9285 | 1529 |
| 5228 | 1530 return NULL; |
| 1531 } | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1532 |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1533 GaimChat * |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1534 gaim_blist_find_chat(GaimAccount *account, const char *name) |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1535 { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1536 char *chat_name; |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1537 GaimChat *chat; |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1538 GaimPlugin *prpl; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1539 GaimPluginProtocolInfo *prpl_info = NULL; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1540 struct proto_chat_entry *pce; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1541 GaimBlistNode *node, *group; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1542 GList *parts; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1543 |
| 9285 | 1544 g_return_val_if_fail(gaimbuddylist != NULL, NULL); |
| 1545 g_return_val_if_fail((name != NULL) && (*name != '\0'), NULL); | |
| 1546 | |
| 1547 if (!gaim_account_is_connected(account)) | |
| 7970 | 1548 return NULL; |
| 1549 | |
| 7999 | 1550 prpl = gaim_find_prpl(gaim_account_get_protocol_id(account)); |
| 1551 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
| 1552 | |
| 9285 | 1553 if (prpl_info->find_blist_chat != NULL) |
| 7999 | 1554 return prpl_info->find_blist_chat(account, name); |
| 1555 | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1556 for (group = gaimbuddylist->root; group != NULL; group = group->next) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1557 for (node = group->child; node != NULL; node = node->next) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1558 if (GAIM_BLIST_NODE_IS_CHAT(node)) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1559 |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1560 chat = (GaimChat*)node; |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1561 |
| 9285 | 1562 if (account != chat->account) |
| 7970 | 1563 continue; |
| 1564 | |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1565 parts = prpl_info->chat_info( |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1566 gaim_account_get_connection(chat->account)); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1567 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1568 pce = parts->data; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1569 chat_name = g_hash_table_lookup(chat->components, |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1570 pce->identifier); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1571 |
| 9153 | 1572 if (chat->account == account && chat_name != NULL && |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1573 name != NULL && !strcmp(chat_name, name)) { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1574 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1575 return chat; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1576 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1577 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1578 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1579 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1580 |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1581 return NULL; |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1582 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1583 |
| 6695 | 1584 GaimGroup * |
| 7125 | 1585 gaim_chat_get_group(GaimChat *chat) |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1586 { |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1587 g_return_val_if_fail(chat != NULL, NULL); |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1588 |
| 6695 | 1589 return (GaimGroup *)(((GaimBlistNode *)chat)->parent); |
|
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1590 } |
|
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6450
diff
changeset
|
1591 |
| 9285 | 1592 GaimContact *gaim_buddy_get_contact(GaimBuddy *buddy) |
| 1593 { | |
| 1594 g_return_val_if_fail(buddy != NULL, NULL); | |
| 1595 | |
| 1596 return (GaimContact*)((GaimBlistNode*)buddy)->parent; | |
| 1597 } | |
| 1598 | |
| 6695 | 1599 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy) |
| 5228 | 1600 { |
| 9285 | 1601 g_return_val_if_fail(buddy != NULL, NULL); |
|
6706
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1602 |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1603 if (((GaimBlistNode *)buddy)->parent == NULL) |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1604 return NULL; |
|
854a435d2cc3
[gaim-migrate @ 7232]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
1605 |
| 6695 | 1606 return (GaimGroup *)(((GaimBlistNode*)buddy)->parent->parent); |
| 5228 | 1607 } |
| 1608 | |
| 9285 | 1609 GSList *gaim_group_get_accounts(GaimGroup *group) |
| 5228 | 1610 { |
| 1611 GSList *l = NULL; | |
| 6695 | 1612 GaimBlistNode *gnode, *cnode, *bnode; |
| 1613 | |
| 9285 | 1614 gnode = (GaimBlistNode *)group; |
| 1615 | |
| 1616 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
| 6695 | 1617 if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
| 9285 | 1618 if (!g_slist_find(l, ((GaimChat *)cnode)->account)) |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1619 l = g_slist_append(l, ((GaimChat *)cnode)->account); |
| 9285 | 1620 } else if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { |
| 1621 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1622 if (GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 1623 if (!g_slist_find(l, ((GaimBuddy *)bnode)->account)) | |
| 6695 | 1624 l = g_slist_append(l, ((GaimBuddy *)bnode)->account); |
| 1625 } | |
| 1626 } | |
| 1627 } | |
| 5228 | 1628 } |
| 6695 | 1629 |
| 5228 | 1630 return l; |
| 1631 } | |
| 1632 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1633 void gaim_blist_add_account(GaimAccount *account) |
| 5234 | 1634 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1635 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 6695 | 1636 GaimBlistNode *gnode, *cnode, *bnode; |
| 5234 | 1637 |
| 9285 | 1638 g_return_if_fail(gaimbuddylist != NULL); |
| 1639 | |
| 1640 if (!ops || !ops->update) | |
| 6695 | 1641 return; |
| 1642 | |
| 9285 | 1643 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
| 1644 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 5234 | 1645 continue; |
| 9285 | 1646 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
| 1647 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 6956 | 1648 gboolean recompute = FALSE; |
| 9285 | 1649 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
| 1650 if (GAIM_BLIST_NODE_IS_BUDDY(bnode) && | |
| 6695 | 1651 ((GaimBuddy*)bnode)->account == account) { |
| 6956 | 1652 recompute = TRUE; |
| 6695 | 1653 ((GaimContact*)cnode)->currentsize++; |
| 9285 | 1654 if (((GaimContact*)cnode)->currentsize == 1) |
| 6695 | 1655 ((GaimGroup*)gnode)->currentsize++; |
| 1656 ops->update(gaimbuddylist, bnode); | |
| 1657 } | |
| 1658 } | |
| 9285 | 1659 if (recompute || |
| 8960 | 1660 gaim_blist_node_get_bool(cnode, "show_offline")) { |
| 6956 | 1661 gaim_contact_compute_priority_buddy((GaimContact*)cnode); |
| 1662 ops->update(gaimbuddylist, cnode); | |
| 1663 } | |
| 9285 | 1664 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode) && |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1665 ((GaimChat*)cnode)->account == account) { |
| 6901 | 1666 ((GaimGroup *)gnode)->online++; |
| 1667 ((GaimGroup *)gnode)->currentsize++; | |
| 1668 ops->update(gaimbuddylist, cnode); | |
| 5234 | 1669 } |
| 1670 } | |
| 6695 | 1671 ops->update(gaimbuddylist, gnode); |
| 5234 | 1672 } |
| 1673 } | |
| 1674 | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
1675 void gaim_blist_remove_account(GaimAccount *account) |
| 5228 | 1676 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
1677 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; |
| 6695 | 1678 GaimBlistNode *gnode, *cnode, *bnode; |
| 5234 | 1679 |
| 9285 | 1680 g_return_if_fail(gaimbuddylist != NULL); |
| 1681 | |
| 1682 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { | |
| 1683 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 5234 | 1684 continue; |
| 9285 | 1685 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
| 1686 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 6957 | 1687 gboolean recompute = FALSE; |
| 9285 | 1688 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
| 1689 if (!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 6695 | 1690 continue; |
| 9285 | 1691 if (account == ((GaimBuddy *)bnode)->account) { |
| 6957 | 1692 recompute = TRUE; |
| 9285 | 1693 if (((GaimBuddy*)bnode)->present == GAIM_BUDDY_ONLINE || |
| 6695 | 1694 ((GaimBuddy*)bnode)->present == GAIM_BUDDY_SIGNING_ON) { |
| 1695 ((GaimContact*)cnode)->online--; | |
| 9285 | 1696 if (((GaimContact*)cnode)->online == 0) |
| 6695 | 1697 ((GaimGroup*)gnode)->online--; |
| 1698 } | |
| 1699 ((GaimContact*)cnode)->currentsize--; | |
| 9285 | 1700 if (((GaimContact*)cnode)->currentsize == 0) |
| 6695 | 1701 ((GaimGroup*)gnode)->currentsize--; |
| 1702 | |
| 1703 ((GaimBuddy*)bnode)->present = GAIM_BUDDY_OFFLINE; | |
| 1704 | |
| 6803 | 1705 ((GaimBuddy*)bnode)->uc = 0; |
| 1706 ((GaimBuddy*)bnode)->idle = 0; | |
| 1707 ((GaimBuddy*)bnode)->evil = 0; | |
| 1708 | |
| 6945 | 1709 |
| 9285 | 1710 if (ops && ops->remove) |
| 6695 | 1711 ops->remove(gaimbuddylist, bnode); |
| 1712 } | |
| 5234 | 1713 } |
| 9285 | 1714 if (recompute) { |
| 6959 | 1715 gaim_contact_compute_priority_buddy((GaimContact*)cnode); |
| 9285 | 1716 if (ops && ops->update) |
| 6983 | 1717 ops->update(gaimbuddylist, cnode); |
| 1718 } | |
| 9285 | 1719 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode) && |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1720 ((GaimChat*)cnode)->account == account) { |
| 6695 | 1721 ((GaimGroup*)gnode)->currentsize--; |
| 1722 ((GaimGroup*)gnode)->online--; | |
| 9285 | 1723 if (ops && ops->remove) |
| 6695 | 1724 ops->remove(gaimbuddylist, cnode); |
| 5228 | 1725 } |
| 1726 } | |
| 1727 } | |
| 1728 } | |
| 1729 | |
| 9285 | 1730 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account) |
| 1731 { | |
| 6695 | 1732 GaimBlistNode *cnode, *bnode; |
| 9285 | 1733 for (cnode = ((GaimBlistNode *)g)->child; cnode; cnode = cnode->next) { |
| 1734 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 1735 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 1736 if (GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 6695 | 1737 GaimBuddy *buddy = (GaimBuddy *)bnode; |
| 9285 | 1738 if ((!account && gaim_account_is_connected(buddy->account)) |
| 6695 | 1739 || buddy->account == account) |
| 1740 return TRUE; | |
| 1741 } | |
| 1742 } | |
| 9285 | 1743 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1744 GaimChat *chat = (GaimChat *)cnode; |
| 9285 | 1745 if ((!account && gaim_account_is_connected(chat->account)) |
| 6695 | 1746 || chat->account == account) |
| 1747 return TRUE; | |
| 1748 } | |
| 5228 | 1749 } |
| 1750 return FALSE; | |
| 1751 } | |
| 1752 | |
| 1753 static gboolean blist_safe_to_write = FALSE; | |
| 1754 | |
| 7132 | 1755 static void parse_setting(GaimBlistNode *node, xmlnode *setting) |
| 1756 { | |
| 1757 const char *name = xmlnode_get_attrib(setting, "name"); | |
| 7693 | 1758 const char *type = xmlnode_get_attrib(setting, "type"); |
| 7132 | 1759 char *value = xmlnode_get_data(setting); |
| 1760 | |
| 9285 | 1761 if (!value) |
| 7693 | 1762 return; |
| 1763 | |
| 9285 | 1764 if (!type || !strcmp(type, "string")) |
| 7693 | 1765 gaim_blist_node_set_string(node, name, value); |
| 9285 | 1766 else if (!strcmp(type, "bool")) |
| 7693 | 1767 gaim_blist_node_set_bool(node, name, atoi(value)); |
| 9285 | 1768 else if (!strcmp(type, "int")) |
| 7693 | 1769 gaim_blist_node_set_int(node, name, atoi(value)); |
| 7132 | 1770 |
| 1771 g_free(value); | |
| 1772 } | |
| 1773 | |
| 1774 static void parse_buddy(GaimGroup *group, GaimContact *contact, xmlnode *bnode) | |
| 1775 { | |
| 1776 GaimAccount *account; | |
| 1777 GaimBuddy *buddy; | |
| 7727 | 1778 char *name = NULL, *alias = NULL; |
| 7153 | 1779 const char *acct_name, *proto, *protocol; |
| 7132 | 1780 xmlnode *x; |
| 1781 | |
| 1782 acct_name = xmlnode_get_attrib(bnode, "account"); | |
| 7153 | 1783 protocol = xmlnode_get_attrib(bnode, "protocol"); |
| 1784 proto = xmlnode_get_attrib(bnode, "proto"); | |
| 1785 | |
| 9285 | 1786 if (!acct_name || (!proto && !protocol)) |
| 7132 | 1787 return; |
| 1788 | |
| 7153 | 1789 account = gaim_accounts_find(acct_name, proto ? proto : protocol); |
| 7132 | 1790 |
| 9285 | 1791 if (!account) |
| 7132 | 1792 return; |
| 1793 | |
| 9285 | 1794 if ((x = xmlnode_get_child(bnode, "name"))) |
| 7132 | 1795 name = xmlnode_get_data(x); |
| 1796 | |
| 9285 | 1797 if (!name) |
| 7132 | 1798 return; |
| 1799 | |
| 9285 | 1800 if ((x = xmlnode_get_child(bnode, "alias"))) |
| 7132 | 1801 alias = xmlnode_get_data(x); |
| 1802 | |
| 1803 buddy = gaim_buddy_new(account, name, alias); | |
| 1804 gaim_blist_add_buddy(buddy, contact, group, | |
| 1805 gaim_blist_get_last_child((GaimBlistNode*)contact)); | |
| 1806 | |
| 9285 | 1807 for (x = xmlnode_get_child(bnode, "setting"); x; x = xmlnode_get_next_twin(x)) { |
| 7132 | 1808 parse_setting((GaimBlistNode*)buddy, x); |
| 1809 } | |
| 1810 | |
| 1811 g_free(name); | |
| 9285 | 1812 if (alias) |
| 7132 | 1813 g_free(alias); |
| 1814 } | |
| 1815 | |
| 1816 static void parse_contact(GaimGroup *group, xmlnode *cnode) | |
| 1817 { | |
| 1818 GaimContact *contact = gaim_contact_new(); | |
| 1819 xmlnode *x; | |
| 7245 | 1820 const char *alias; |
| 7132 | 1821 |
| 1822 gaim_blist_add_contact(contact, group, | |
| 1823 gaim_blist_get_last_child((GaimBlistNode*)group)); | |
| 1824 | |
| 9285 | 1825 if ((alias = xmlnode_get_attrib(cnode, "alias"))) { |
| 7132 | 1826 gaim_contact_set_alias(contact, alias); |
| 1827 } | |
| 1828 | |
| 9285 | 1829 for (x = cnode->child; x; x = x->next) { |
| 1830 if (x->type != XMLNODE_TYPE_TAG) | |
| 7132 | 1831 continue; |
| 9285 | 1832 if (!strcmp(x->name, "buddy")) |
| 7132 | 1833 parse_buddy(group, contact, x); |
| 9285 | 1834 else if (!strcmp(x->name, "setting")) |
| 7132 | 1835 parse_setting((GaimBlistNode*)contact, x); |
| 5228 | 1836 } |
| 7825 | 1837 |
| 1838 /* if the contact is empty, don't keep it around. it causes problems */ | |
| 9285 | 1839 if (!((GaimBlistNode*)contact)->child) |
| 7825 | 1840 gaim_blist_remove_contact(contact); |
| 5228 | 1841 } |
| 1842 | |
| 7132 | 1843 static void parse_chat(GaimGroup *group, xmlnode *cnode) |
| 1844 { | |
| 1845 GaimChat *chat; | |
| 1846 GaimAccount *account; | |
| 7153 | 1847 const char *acct_name, *proto, *protocol; |
| 7132 | 1848 xmlnode *x; |
| 1849 char *alias = NULL; | |
| 1850 GHashTable *components; | |
| 1851 | |
| 1852 acct_name = xmlnode_get_attrib(cnode, "account"); | |
| 7153 | 1853 protocol = xmlnode_get_attrib(cnode, "protocol"); |
| 1854 proto = xmlnode_get_attrib(cnode, "proto"); | |
| 1855 | |
| 9285 | 1856 if (!acct_name || (!proto && !protocol)) |
| 7132 | 1857 return; |
| 1858 | |
| 7153 | 1859 account = gaim_accounts_find(acct_name, proto ? proto : protocol); |
| 7132 | 1860 |
| 9285 | 1861 if (!account) |
| 7132 | 1862 return; |
| 1863 | |
| 9285 | 1864 if ((x = xmlnode_get_child(cnode, "alias"))) |
| 7132 | 1865 alias = xmlnode_get_data(x); |
| 1866 | |
| 1867 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); | |
| 1868 | |
| 9285 | 1869 for (x = xmlnode_get_child(cnode, "component"); x; x = xmlnode_get_next_twin(x)) { |
| 7132 | 1870 const char *name; |
| 1871 char *value; | |
| 1872 | |
| 1873 name = xmlnode_get_attrib(x, "name"); | |
| 1874 value = xmlnode_get_data(x); | |
| 1875 g_hash_table_replace(components, g_strdup(name), value); | |
| 1876 } | |
| 1877 | |
| 1878 chat = gaim_chat_new(account, alias, components); | |
| 7151 | 1879 gaim_blist_add_chat(chat, group, |
| 1880 gaim_blist_get_last_child((GaimBlistNode*)group)); | |
| 7132 | 1881 |
| 9285 | 1882 for (x = xmlnode_get_child(cnode, "setting"); x; x = xmlnode_get_next_twin(x)) { |
| 7132 | 1883 parse_setting((GaimBlistNode*)chat, x); |
| 1884 } | |
| 1885 | |
| 9285 | 1886 if (alias) |
| 7132 | 1887 g_free(alias); |
| 1888 } | |
| 1889 | |
| 1890 | |
| 1891 static void parse_group(xmlnode *groupnode) | |
| 1892 { | |
| 1893 const char *name = xmlnode_get_attrib(groupnode, "name"); | |
| 1894 GaimGroup *group; | |
| 1895 xmlnode *cnode; | |
| 1896 | |
| 9285 | 1897 if (!name) |
| 7132 | 1898 name = _("Buddies"); |
| 1899 | |
| 1900 group = gaim_group_new(name); | |
| 1901 gaim_blist_add_group(group, | |
| 1902 gaim_blist_get_last_sibling(gaimbuddylist->root)); | |
| 1903 | |
| 9285 | 1904 for (cnode = groupnode->child; cnode; cnode = cnode->next) { |
| 1905 if (cnode->type != XMLNODE_TYPE_TAG) | |
| 7132 | 1906 continue; |
| 9285 | 1907 if (!strcmp(cnode->name, "setting")) |
| 7132 | 1908 parse_setting((GaimBlistNode*)group, cnode); |
| 9285 | 1909 else if (!strcmp(cnode->name, "contact") || |
| 7132 | 1910 !strcmp(cnode->name, "person")) |
| 1911 parse_contact(group, cnode); | |
| 9285 | 1912 else if (!strcmp(cnode->name, "chat")) |
| 7132 | 1913 parse_chat(group, cnode); |
| 5228 | 1914 } |
| 1915 } | |
| 1916 | |
| 9285 | 1917 static gboolean gaim_blist_read(const char *filename) |
| 1918 { | |
| 7132 | 1919 GError *error; |
| 5228 | 1920 gchar *contents = NULL; |
| 1921 gsize length; | |
| 7132 | 1922 xmlnode *gaim, *blist, *privacy; |
| 5228 | 1923 |
| 1924 gaim_debug(GAIM_DEBUG_INFO, "blist import", | |
| 1925 "Reading %s\n", filename); | |
| 9285 | 1926 if (!g_file_get_contents(filename, &contents, &length, &error)) { |
| 5228 | 1927 gaim_debug(GAIM_DEBUG_ERROR, "blist import", |
| 1928 "Error reading blist: %s\n", error->message); | |
| 1929 g_error_free(error); | |
| 1930 return FALSE; | |
| 1931 } | |
| 1932 | |
| 7132 | 1933 gaim = xmlnode_from_str(contents, length); |
| 8826 | 1934 |
| 9285 | 1935 if (!gaim) { |
| 8826 | 1936 FILE *backup; |
| 1937 char *name; | |
| 7132 | 1938 gaim_debug(GAIM_DEBUG_ERROR, "blist import", "Error parsing %s\n", |
| 1939 filename); | |
| 8826 | 1940 name = g_build_filename(gaim_user_dir(), "blist.xml~", NULL); |
| 1941 | |
| 9285 | 1942 if ((backup = fopen(name, "w"))) { |
| 8826 | 1943 fwrite(contents, length, 1, backup); |
| 1944 fclose(backup); | |
| 1945 chmod(name, S_IRUSR | S_IWUSR); | |
| 1946 } else { | |
| 1947 gaim_debug(GAIM_DEBUG_ERROR, "blist load", "Unable to write backup %s\n", | |
| 1948 name); | |
| 1949 } | |
| 1950 g_free(name); | |
| 1951 g_free(contents); | |
| 5228 | 1952 return FALSE; |
| 1953 } | |
| 8826 | 1954 |
| 1955 g_free(contents); | |
| 1956 | |
| 7132 | 1957 blist = xmlnode_get_child(gaim, "blist"); |
| 9285 | 1958 if (blist) { |
| 7132 | 1959 xmlnode *groupnode; |
| 9285 | 1960 for (groupnode = xmlnode_get_child(blist, "group"); groupnode; |
| 8135 | 1961 groupnode = xmlnode_get_next_twin(groupnode)) { |
| 7132 | 1962 parse_group(groupnode); |
| 1963 } | |
| 5228 | 1964 } |
| 1965 | |
| 7132 | 1966 privacy = xmlnode_get_child(gaim, "privacy"); |
| 9285 | 1967 if (privacy) { |
| 7132 | 1968 xmlnode *anode; |
| 9285 | 1969 for (anode = privacy->child; anode; anode = anode->next) { |
| 7132 | 1970 xmlnode *x; |
| 1971 GaimAccount *account; | |
| 7153 | 1972 const char *acct_name, *proto, *mode, *protocol; |
| 7132 | 1973 |
| 1974 acct_name = xmlnode_get_attrib(anode, "name"); | |
| 7153 | 1975 protocol = xmlnode_get_attrib(anode, "protocol"); |
| 1976 proto = xmlnode_get_attrib(anode, "proto"); | |
| 7132 | 1977 mode = xmlnode_get_attrib(anode, "mode"); |
| 1978 | |
| 9285 | 1979 if (!acct_name || (!proto && !protocol) || !mode) |
| 7132 | 1980 continue; |
| 1981 | |
| 7153 | 1982 account = gaim_accounts_find(acct_name, proto ? proto : protocol); |
| 7132 | 1983 |
| 9285 | 1984 if (!account) |
| 7132 | 1985 continue; |
| 1986 | |
| 1987 account->perm_deny = atoi(mode); | |
| 1988 | |
| 9285 | 1989 for (x = anode->child; x; x = x->next) { |
| 7132 | 1990 char *name; |
| 9285 | 1991 if (x->type != XMLNODE_TYPE_TAG) |
| 7132 | 1992 continue; |
| 1993 | |
| 9285 | 1994 if (!strcmp(x->name, "permit")) { |
| 7132 | 1995 name = xmlnode_get_data(x); |
| 1996 gaim_privacy_permit_add(account, name, TRUE); | |
| 1997 g_free(name); | |
| 9285 | 1998 } else if (!strcmp(x->name, "block")) { |
| 7132 | 1999 name = xmlnode_get_data(x); |
| 2000 gaim_privacy_deny_add(account, name, TRUE); | |
| 2001 g_free(name); | |
| 2002 } | |
| 2003 } | |
| 2004 } | |
| 2005 } | |
| 5228 | 2006 |
| 2007 gaim_debug(GAIM_DEBUG_INFO, "blist import", "Finished reading %s\n", | |
| 2008 filename); | |
| 2009 | |
| 8200 | 2010 xmlnode_free(gaim); |
| 5228 | 2011 return TRUE; |
| 2012 } | |
| 2013 | |
| 9285 | 2014 void gaim_blist_load() |
| 2015 { | |
| 5228 | 2016 char *user_dir = gaim_user_dir(); |
| 2017 char *filename; | |
| 2018 char *msg; | |
| 2019 | |
| 2020 blist_safe_to_write = TRUE; | |
| 2021 | |
| 9285 | 2022 if (!user_dir) |
| 5228 | 2023 return; |
| 2024 | |
| 2025 filename = g_build_filename(user_dir, "blist.xml", NULL); | |
| 2026 | |
| 9285 | 2027 if (g_file_test(filename, G_FILE_TEST_EXISTS)) { |
| 2028 if (!gaim_blist_read(filename)) { | |
| 5228 | 2029 msg = g_strdup_printf(_("An error was encountered parsing your " |
| 8826 | 2030 "buddy list. It has not been loaded, " |
| 2031 "and the old file has moved to blist.xml~.")); | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2032 gaim_notify_error(NULL, NULL, _("Buddy List Error"), msg); |
| 5228 | 2033 g_free(msg); |
| 2034 } | |
| 2035 } | |
| 2036 | |
| 2037 g_free(filename); | |
| 2038 } | |
| 2039 | |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2040 void |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2041 gaim_blist_request_add_buddy(GaimAccount *account, const char *username, |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2042 const char *group, const char *alias) |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2043 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2044 GaimBlistUiOps *ui_ops; |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2045 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2046 ui_ops = gaim_blist_get_ui_ops(); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2047 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2048 if (ui_ops != NULL && ui_ops->request_add_buddy != NULL) |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2049 ui_ops->request_add_buddy(account, username, group, alias); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2050 } |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2051 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2052 void |
| 7859 | 2053 gaim_blist_request_add_chat(GaimAccount *account, GaimGroup *group, const char *alias) |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2054 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2055 GaimBlistUiOps *ui_ops; |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2056 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2057 ui_ops = gaim_blist_get_ui_ops(); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2058 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2059 if (ui_ops != NULL && ui_ops->request_add_chat != NULL) |
| 7859 | 2060 ui_ops->request_add_chat(account, group, alias); |
|
7060
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 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2063 void |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2064 gaim_blist_request_add_group(void) |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2065 { |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2066 GaimBlistUiOps *ui_ops; |
|
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2067 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2068 ui_ops = gaim_blist_get_ui_ops(); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2069 |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2070 if (ui_ops != NULL && ui_ops->request_add_group != NULL) |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2071 ui_ops->request_add_group(); |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2072 } |
|
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
2073 |
| 7693 | 2074 static void blist_print_setting(const char *key, |
| 2075 struct gaim_blist_node_setting *setting, FILE *file, int indent) | |
| 2076 { | |
| 2077 char *key_val, *data_val = NULL; | |
| 2078 const char *type = NULL; | |
| 2079 int i; | |
| 2080 | |
| 9285 | 2081 if (!key) |
| 7693 | 2082 return; |
| 2083 | |
| 2084 switch(setting->type) { | |
| 2085 case GAIM_BLIST_NODE_SETTING_BOOL: | |
| 2086 type = "bool"; | |
| 2087 data_val = g_strdup_printf("%d", setting->value.boolean); | |
| 2088 break; | |
| 2089 case GAIM_BLIST_NODE_SETTING_INT: | |
| 2090 type = "int"; | |
| 2091 data_val = g_strdup_printf("%d", setting->value.integer); | |
| 2092 break; | |
| 2093 case GAIM_BLIST_NODE_SETTING_STRING: | |
| 9285 | 2094 if (!setting->value.string) |
| 7693 | 2095 return; |
| 2096 | |
| 2097 type = "string"; | |
| 2098 data_val = g_markup_escape_text(setting->value.string, -1); | |
| 2099 break; | |
| 2100 } | |
| 2101 | |
| 2102 /* this can't happen */ | |
| 9285 | 2103 if (!type || !data_val) |
| 7693 | 2104 return; |
| 2105 | |
| 9285 | 2106 for (i=0; i<indent; i++) fprintf(file, "\t"); |
| 7693 | 2107 |
| 2108 key_val = g_markup_escape_text(key, -1); | |
| 2109 fprintf(file, "<setting name=\"%s\" type=\"%s\">%s</setting>\n", key_val, type, | |
| 2110 data_val); | |
| 2111 | |
| 2112 g_free(key_val); | |
| 2113 g_free(data_val); | |
| 2114 } | |
| 2115 | |
| 5228 | 2116 static void blist_print_group_settings(gpointer key, gpointer data, |
| 9285 | 2117 gpointer user_data) |
| 2118 { | |
| 7693 | 2119 blist_print_setting(key, data, user_data, 3); |
| 5228 | 2120 } |
| 2121 | |
| 2122 static void blist_print_buddy_settings(gpointer key, gpointer data, | |
| 9285 | 2123 gpointer user_data) |
| 2124 { | |
| 7693 | 2125 blist_print_setting(key, data, user_data, 5); |
| 5228 | 2126 } |
| 2127 | |
| 6695 | 2128 static void blist_print_cnode_settings(gpointer key, gpointer data, |
| 9285 | 2129 gpointer user_data) |
| 2130 { | |
| 7693 | 2131 blist_print_setting(key, data, user_data, 4); |
| 6695 | 2132 } |
| 2133 | |
| 5234 | 2134 static void blist_print_chat_components(gpointer key, gpointer data, |
| 2135 gpointer user_data) { | |
| 2136 char *key_val; | |
| 2137 char *data_val; | |
| 2138 FILE *file = user_data; | |
| 2139 | |
| 9285 | 2140 if (!key || !data) |
| 5234 | 2141 return; |
| 2142 | |
| 2143 key_val = g_markup_escape_text(key, -1); | |
| 2144 data_val = g_markup_escape_text(data, -1); | |
| 2145 | |
| 2146 fprintf(file, "\t\t\t\t<component name=\"%s\">%s</component>\n", key_val, | |
| 2147 data_val); | |
| 2148 g_free(key_val); | |
| 2149 g_free(data_val); | |
| 2150 } | |
| 2151 | |
| 9285 | 2152 static void print_buddy(FILE *file, GaimBuddy *buddy) |
| 2153 { | |
| 6695 | 2154 char *bud_name = g_markup_escape_text(buddy->name, -1); |
| 2155 char *bud_alias = NULL; | |
| 2156 char *acct_name = g_markup_escape_text(buddy->account->username, -1); | |
| 9285 | 2157 if (buddy->alias) |
| 6695 | 2158 bud_alias= g_markup_escape_text(buddy->alias, -1); |
| 9460 | 2159 fprintf(file, "\t\t\t\t<buddy account=\"%s\" proto=\"%s\">\n", acct_name, |
| 7153 | 2160 gaim_account_get_protocol_id(buddy->account)); |
| 2161 | |
| 6695 | 2162 fprintf(file, "\t\t\t\t\t<name>%s</name>\n", bud_name); |
| 9285 | 2163 if (bud_alias) { |
| 6695 | 2164 fprintf(file, "\t\t\t\t\t<alias>%s</alias>\n", bud_alias); |
| 2165 } | |
| 7726 | 2166 g_hash_table_foreach(buddy->node.settings, blist_print_buddy_settings, file); |
| 6695 | 2167 fprintf(file, "\t\t\t\t</buddy>\n"); |
| 2168 g_free(bud_name); | |
| 2169 g_free(bud_alias); | |
| 2170 g_free(acct_name); | |
| 2171 } | |
| 2172 | |
| 9285 | 2173 static void gaim_blist_write(FILE *file, GaimAccount *exp_acct) |
| 2174 { | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2175 GList *accounts; |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2176 GSList *buds; |
| 6695 | 2177 GaimBlistNode *gnode, *cnode, *bnode; |
| 5228 | 2178 fprintf(file, "<?xml version='1.0' encoding='UTF-8' ?>\n"); |
| 2179 fprintf(file, "<gaim version=\"1\">\n"); | |
| 2180 fprintf(file, "\t<blist>\n"); | |
| 2181 | |
| 9285 | 2182 for (gnode = gaimbuddylist->root; gnode; gnode = gnode->next) { |
| 6695 | 2183 GaimGroup *group; |
| 2184 | |
| 9285 | 2185 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
| 5228 | 2186 continue; |
| 6695 | 2187 |
| 2188 group = (GaimGroup *)gnode; | |
| 9285 | 2189 if (!exp_acct || gaim_group_on_account(group, exp_acct)) { |
| 5228 | 2190 char *group_name = g_markup_escape_text(group->name, -1); |
| 2191 fprintf(file, "\t\t<group name=\"%s\">\n", group_name); | |
| 7693 | 2192 g_hash_table_foreach(group->node.settings, |
| 2193 blist_print_group_settings, file); | |
| 9285 | 2194 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
| 2195 if (GAIM_BLIST_NODE_IS_CONTACT(cnode)) { | |
| 6755 | 2196 GaimContact *contact = (GaimContact*)cnode; |
| 2197 fprintf(file, "\t\t\t<contact"); | |
| 9285 | 2198 if (contact->alias) { |
| 6755 | 2199 char *alias = g_markup_escape_text(contact->alias, -1); |
| 2200 fprintf(file, " alias=\"%s\"", alias); | |
| 2201 g_free(alias); | |
| 2202 } | |
| 2203 fprintf(file, ">\n"); | |
| 6695 | 2204 |
| 9285 | 2205 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
| 2206 if (GAIM_BLIST_NODE_IS_BUDDY(bnode)) { | |
| 6695 | 2207 GaimBuddy *buddy = (GaimBuddy *)bnode; |
| 9285 | 2208 if (!exp_acct || buddy->account == exp_acct) { |
| 6695 | 2209 print_buddy(file, buddy); |
| 2210 } | |
| 5234 | 2211 } |
| 5228 | 2212 } |
| 6695 | 2213 |
| 8960 | 2214 g_hash_table_foreach(cnode->settings, |
| 2215 blist_print_cnode_settings, file); | |
| 2216 | |
| 6695 | 2217 fprintf(file, "\t\t\t</contact>\n"); |
| 9285 | 2218 } else if (GAIM_BLIST_NODE_IS_CHAT(cnode)) { |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
2219 GaimChat *chat = (GaimChat *)cnode; |
| 9285 | 2220 if (!exp_acct || chat->account == exp_acct) { |
| 5234 | 2221 char *acct_name = g_markup_escape_text(chat->account->username, -1); |
| 9460 | 2222 fprintf(file, "\t\t\t<chat proto=\"%s\" account=\"%s\">\n", |
| 7133 | 2223 gaim_account_get_protocol_id(chat->account), |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2224 acct_name); |
| 7153 | 2225 |
| 9285 | 2226 if (chat->alias) { |
| 5237 | 2227 char *chat_alias = g_markup_escape_text(chat->alias, -1); |
| 2228 fprintf(file, "\t\t\t\t<alias>%s</alias>\n", chat_alias); | |
| 2229 g_free(chat_alias); | |
| 2230 } | |
| 5234 | 2231 g_hash_table_foreach(chat->components, |
| 2232 blist_print_chat_components, file); | |
| 7693 | 2233 g_hash_table_foreach(chat->node.settings, |
| 6695 | 2234 blist_print_cnode_settings, file); |
| 5234 | 2235 fprintf(file, "\t\t\t</chat>\n"); |
| 5237 | 2236 g_free(acct_name); |
| 5234 | 2237 } |
| 5228 | 2238 } |
| 2239 } | |
| 2240 fprintf(file, "\t\t</group>\n"); | |
| 2241 g_free(group_name); | |
| 2242 } | |
| 2243 } | |
| 2244 | |
| 2245 fprintf(file, "\t</blist>\n"); | |
| 2246 fprintf(file, "\t<privacy>\n"); | |
| 2247 | |
| 9285 | 2248 for (accounts = gaim_accounts_get_all(); |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2249 accounts != NULL; |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2250 accounts = accounts->next) { |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
2251 |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5545
diff
changeset
|
2252 GaimAccount *account = accounts->data; |
| 5228 | 2253 char *acct_name = g_markup_escape_text(account->username, -1); |
| 9285 | 2254 if (!exp_acct || account == exp_acct) { |
| 7153 | 2255 fprintf(file, "\t\t<account proto=\"%s\" name=\"%s\" " |
| 9460 | 2256 "mode=\"%d\">\n", gaim_account_get_protocol_id(account), |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
2257 acct_name, account->perm_deny); |
| 7153 | 2258 |
| 9285 | 2259 for (buds = account->permit; buds; buds = buds->next) { |
| 5228 | 2260 char *bud_name = g_markup_escape_text(buds->data, -1); |
| 2261 fprintf(file, "\t\t\t<permit>%s</permit>\n", bud_name); | |
| 2262 g_free(bud_name); | |
| 2263 } | |
| 9285 | 2264 for (buds = account->deny; buds; buds = buds->next) { |
| 5228 | 2265 char *bud_name = g_markup_escape_text(buds->data, -1); |
| 2266 fprintf(file, "\t\t\t<block>%s</block>\n", bud_name); | |
| 2267 g_free(bud_name); | |
| 2268 } | |
| 2269 fprintf(file, "\t\t</account>\n"); | |
| 2270 } | |
| 2271 g_free(acct_name); | |
| 2272 } | |
| 2273 | |
| 2274 fprintf(file, "\t</privacy>\n"); | |
| 2275 fprintf(file, "</gaim>\n"); | |
| 2276 } | |
| 2277 | |
| 9285 | 2278 void gaim_blist_sync() |
| 2279 { | |
| 5228 | 2280 FILE *file; |
| 2281 char *user_dir = gaim_user_dir(); | |
| 2282 char *filename; | |
| 2283 char *filename_real; | |
| 2284 | |
| 9285 | 2285 if (!user_dir) |
| 5228 | 2286 return; |
| 9285 | 2287 |
| 2288 if (!blist_safe_to_write) { | |
| 5228 | 2289 gaim_debug(GAIM_DEBUG_WARNING, "blist save", |
| 2290 "AHH!! Tried to write the blist before we read it!\n"); | |
| 2291 return; | |
| 2292 } | |
| 2293 | |
| 2294 file = fopen(user_dir, "r"); | |
| 9285 | 2295 if (!file) |
| 5228 | 2296 mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); |
| 2297 else | |
| 2298 fclose(file); | |
| 2299 | |
| 2300 filename = g_build_filename(user_dir, "blist.xml.save", NULL); | |
| 2301 | |
| 9285 | 2302 if ((file = fopen(filename, "w"))) { |
| 5228 | 2303 gaim_blist_write(file, NULL); |
| 2304 fclose(file); | |
| 2305 chmod(filename, S_IRUSR | S_IWUSR); | |
| 2306 } else { | |
| 2307 gaim_debug(GAIM_DEBUG_ERROR, "blist save", "Unable to write %s\n", | |
| 2308 filename); | |
| 8549 | 2309 g_free(filename); |
| 2310 return; | |
| 5228 | 2311 } |
| 2312 | |
| 2313 filename_real = g_build_filename(user_dir, "blist.xml", NULL); | |
| 2314 | |
| 9285 | 2315 if (rename(filename, filename_real) < 0) |
| 5228 | 2316 gaim_debug(GAIM_DEBUG_ERROR, "blist save", |
| 2317 "Error renaming %s to %s\n", filename, filename_real); | |
| 2318 | |
| 2319 | |
| 2320 g_free(filename); | |
| 2321 g_free(filename_real); | |
| 2322 } | |
| 2323 | |
| 7693 | 2324 |
| 2325 static void gaim_blist_node_setting_free(struct gaim_blist_node_setting *setting) | |
| 2326 { | |
| 2327 switch(setting->type) { | |
| 2328 case GAIM_BLIST_NODE_SETTING_BOOL: | |
| 2329 case GAIM_BLIST_NODE_SETTING_INT: | |
| 2330 break; | |
| 2331 case GAIM_BLIST_NODE_SETTING_STRING: | |
| 2332 g_free(setting->value.string); | |
| 2333 break; | |
| 2334 } | |
| 8020 | 2335 g_free(setting); |
| 7693 | 2336 } |
| 2337 | |
| 9285 | 2338 static void gaim_blist_node_initialize_settings(GaimBlistNode *node) |
| 7693 | 2339 { |
| 9285 | 2340 if (node->settings) |
| 5228 | 2341 return; |
| 7693 | 2342 |
| 2343 node->settings = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, | |
| 2344 (GDestroyNotify)gaim_blist_node_setting_free); | |
| 2345 } | |
| 2346 | |
| 2347 void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key) | |
| 2348 { | |
| 2349 g_return_if_fail(node != NULL); | |
| 2350 g_return_if_fail(node->settings != NULL); | |
| 2351 g_return_if_fail(key != NULL); | |
| 2352 | |
| 2353 g_hash_table_remove(node->settings, key); | |
| 9285 | 2354 |
| 2355 schedule_blist_save(); | |
| 5228 | 2356 } |
| 2357 | |
| 7693 | 2358 |
| 2359 void gaim_blist_node_set_bool(GaimBlistNode* node, const char *key, gboolean value) | |
| 2360 { | |
| 2361 struct gaim_blist_node_setting *setting; | |
| 2362 | |
| 2363 g_return_if_fail(node != NULL); | |
| 2364 g_return_if_fail(node->settings != NULL); | |
| 2365 g_return_if_fail(key != NULL); | |
| 2366 | |
| 2367 setting = g_new0(struct gaim_blist_node_setting, 1); | |
| 2368 setting->type = GAIM_BLIST_NODE_SETTING_BOOL; | |
| 2369 setting->value.boolean = value; | |
| 2370 | |
| 2371 g_hash_table_replace(node->settings, g_strdup(key), setting); | |
| 9285 | 2372 |
| 2373 schedule_blist_save(); | |
| 7693 | 2374 } |
| 2375 | |
| 2376 gboolean gaim_blist_node_get_bool(GaimBlistNode* node, const char *key) | |
| 2377 { | |
| 2378 struct gaim_blist_node_setting *setting; | |
| 2379 | |
| 2380 g_return_val_if_fail(node != NULL, FALSE); | |
| 2381 g_return_val_if_fail(node->settings != NULL, FALSE); | |
| 2382 g_return_val_if_fail(key != NULL, FALSE); | |
| 2383 | |
| 2384 setting = g_hash_table_lookup(node->settings, key); | |
| 2385 | |
| 9285 | 2386 if (!setting) |
| 7849 | 2387 return FALSE; |
| 2388 | |
| 7848 | 2389 g_return_val_if_fail(setting->type == GAIM_BLIST_NODE_SETTING_BOOL, FALSE); |
| 2390 | |
| 2391 return setting->value.boolean; | |
| 5228 | 2392 } |
| 2393 | |
| 7693 | 2394 void gaim_blist_node_set_int(GaimBlistNode* node, const char *key, int value) |
| 2395 { | |
| 2396 struct gaim_blist_node_setting *setting; | |
| 2397 | |
| 2398 g_return_if_fail(node != NULL); | |
| 2399 g_return_if_fail(node->settings != NULL); | |
| 2400 g_return_if_fail(key != NULL); | |
| 2401 | |
| 2402 setting = g_new0(struct gaim_blist_node_setting, 1); | |
| 8071 | 2403 setting->type = GAIM_BLIST_NODE_SETTING_INT; |
| 7693 | 2404 setting->value.integer = value; |
| 2405 | |
| 2406 g_hash_table_replace(node->settings, g_strdup(key), setting); | |
| 9285 | 2407 |
| 2408 schedule_blist_save(); | |
| 7693 | 2409 } |
| 2410 | |
| 2411 int gaim_blist_node_get_int(GaimBlistNode* node, const char *key) | |
| 2412 { | |
| 2413 struct gaim_blist_node_setting *setting; | |
| 2414 | |
| 2415 g_return_val_if_fail(node != NULL, 0); | |
| 2416 g_return_val_if_fail(node->settings != NULL, 0); | |
| 2417 g_return_val_if_fail(key != NULL, 0); | |
| 2418 | |
| 2419 setting = g_hash_table_lookup(node->settings, key); | |
| 2420 | |
| 9285 | 2421 if (!setting) |
| 7849 | 2422 return 0; |
| 2423 | |
| 7848 | 2424 g_return_val_if_fail(setting->type == GAIM_BLIST_NODE_SETTING_INT, 0); |
| 2425 | |
| 2426 return setting->value.integer; | |
| 7693 | 2427 } |
| 2428 | |
| 2429 void gaim_blist_node_set_string(GaimBlistNode* node, const char *key, | |
| 5906 | 2430 const char *value) |
| 2431 { | |
| 7693 | 2432 struct gaim_blist_node_setting *setting; |
| 2433 | |
| 2434 g_return_if_fail(node != NULL); | |
| 2435 g_return_if_fail(node->settings != NULL); | |
| 2436 g_return_if_fail(key != NULL); | |
| 2437 | |
| 2438 setting = g_new0(struct gaim_blist_node_setting, 1); | |
| 2439 setting->type = GAIM_BLIST_NODE_SETTING_STRING; | |
| 2440 setting->value.string = g_strdup(value); | |
| 2441 | |
| 2442 g_hash_table_replace(node->settings, g_strdup(key), setting); | |
| 9285 | 2443 |
| 2444 schedule_blist_save(); | |
| 7693 | 2445 } |
| 2446 | |
| 2447 const char *gaim_blist_node_get_string(GaimBlistNode* node, const char *key) | |
| 2448 { | |
| 2449 struct gaim_blist_node_setting *setting; | |
| 2450 | |
| 2451 g_return_val_if_fail(node != NULL, NULL); | |
| 2452 g_return_val_if_fail(node->settings != NULL, NULL); | |
| 2453 g_return_val_if_fail(key != NULL, NULL); | |
| 2454 | |
| 2455 setting = g_hash_table_lookup(node->settings, key); | |
| 2456 | |
| 9285 | 2457 if (!setting) |
| 7849 | 2458 return NULL; |
| 2459 | |
| 7848 | 2460 g_return_val_if_fail(setting->type == GAIM_BLIST_NODE_SETTING_STRING, NULL); |
| 2461 | |
| 2462 return setting->value.string; | |
| 7693 | 2463 } |
| 2464 | |
| 9285 | 2465 GList *gaim_blist_node_get_extended_menu(GaimBlistNode *n) |
| 7693 | 2466 { |
|
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2467 GList *menu = NULL; |
| 9030 | 2468 |
| 2469 g_return_val_if_fail(n, NULL); | |
| 2470 | |
| 2471 gaim_signal_emit(gaim_blist_get_handle(), | |
| 2472 "blist-node-extended-menu", | |
| 2473 n, &menu); | |
|
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2474 return menu; |
|
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2475 } |
|
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2476 |
| 9030 | 2477 |
| 2478 GaimBlistNodeAction * | |
| 2479 gaim_blist_node_action_new(char *label, | |
| 2480 void (*callback)(GaimBlistNode *, gpointer), | |
| 2481 gpointer data) | |
| 2482 { | |
| 2483 GaimBlistNodeAction *act = g_new0(GaimBlistNodeAction, 1); | |
| 2484 act->label = label; | |
| 2485 act->callback = callback; | |
| 2486 act->data = data; | |
| 2487 return act; | |
| 8952 | 2488 } |
| 2489 | |
|
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2490 |
| 9285 | 2491 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline) |
| 2492 { | |
| 2493 if (!group) | |
| 5228 | 2494 return 0; |
| 2495 | |
| 5277 | 2496 return offline ? group->totalsize : group->currentsize; |
| 5228 | 2497 } |
| 2498 | |
| 9285 | 2499 int gaim_blist_get_group_online_count(GaimGroup *group) |
| 2500 { | |
| 2501 if (!group) | |
| 5228 | 2502 return 0; |
| 2503 | |
| 5277 | 2504 return group->online; |
| 5228 | 2505 } |
| 2506 | |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2507 void |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2508 gaim_blist_set_ui_ops(GaimBlistUiOps *ops) |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2509 { |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2510 blist_ui_ops = ops; |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2511 } |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2512 |
|
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
2513 GaimBlistUiOps * |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2514 gaim_blist_get_ui_ops(void) |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2515 { |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2516 return blist_ui_ops; |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2517 } |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2518 |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7003
diff
changeset
|
2519 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2520 void * |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2521 gaim_blist_get_handle(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2522 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2523 static int handle; |
| 5228 | 2524 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2525 return &handle; |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2526 } |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2527 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2528 void |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2529 gaim_blist_init(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2530 { |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2531 void *handle = gaim_blist_get_handle(); |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2532 |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2533 gaim_signal_register(handle, "buddy-away", |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2534 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2535 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2536 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2537 |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2538 gaim_signal_register(handle, "buddy-back", |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2539 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2540 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2541 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2542 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2543 gaim_signal_register(handle, "buddy-idle", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2544 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2545 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2546 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2547 gaim_signal_register(handle, "buddy-unidle", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2548 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2549 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2550 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
9109
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2551 gaim_signal_register(handle, "buddy-idle-updated", |
|
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2552 gaim_marshal_VOID__POINTER, NULL, 1, |
|
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2553 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
9f21659ecf11
[gaim-migrate @ 9886]
Christian Hammond <chipx86@chipx86.com>
parents:
9030
diff
changeset
|
2554 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2555 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2556 gaim_signal_register(handle, "buddy-signed-on", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2557 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2558 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2559 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2560 |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2561 gaim_signal_register(handle, "buddy-signed-off", |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2562 gaim_marshal_VOID__POINTER, NULL, 1, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2563 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2564 GAIM_SUBTYPE_BLIST_BUDDY)); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2565 |
|
6564
800ef4a51096
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6506
diff
changeset
|
2566 gaim_signal_register(handle, "update-idle", gaim_marshal_VOID, NULL, 0); |
| 9030 | 2567 |
| 2568 gaim_signal_register(handle, "blist-node-extended-menu", | |
|
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2569 gaim_marshal_VOID__POINTER_POINTER, NULL, 2, |
|
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
2570 gaim_value_new(GAIM_TYPE_SUBTYPE, |
| 9030 | 2571 GAIM_SUBTYPE_BLIST_NODE), |
| 8952 | 2572 gaim_value_new(GAIM_TYPE_BOXED, "GList **")); |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2573 } |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2574 |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2575 void |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2576 gaim_blist_uninit(void) |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2577 { |
| 9285 | 2578 if (blist_save_timer != 0) { |
| 2579 gaim_timeout_remove(blist_save_timer); | |
| 2580 blist_save_timer = 0; | |
| 2581 gaim_blist_sync(); | |
| 2582 } | |
| 2583 | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2584 gaim_signals_unregister_by_instance(gaim_blist_get_handle()); |
|
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6473
diff
changeset
|
2585 } |
