Mercurial > pidgin
annotate src/protocols/msn/userlist.c @ 10828:9cf14a87eedc
[gaim-migrate @ 12494]
La di da di
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Sat, 16 Apr 2005 16:05:40 +0000 |
| parents | d83f745c997b |
| children | 34d2aac7b34f |
| rev | line source |
|---|---|
|
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
1 /** |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
2 * @file userlist.c MSN user list support |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
3 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
4 * gaim |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
5 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
6 * Gaim is the legal property of its developers, whose names are too numerous |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
7 * to list here. Please refer to the COPYRIGHT file distributed with this |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
8 * source distribution. |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
9 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
10 * This program is free software; you can redistribute it and/or modify |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
11 * it under the terms of the GNU General Public License as published by |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
12 * the Free Software Foundation; either version 2 of the License, or |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
13 * (at your option) any later version. |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
14 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
15 * This program is distributed in the hope that it will be useful, |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
18 * GNU General Public License for more details. |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
19 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
20 * You should have received a copy of the GNU General Public License |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
21 * along with this program; if not, write to the Free Software |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
23 */ |
| 9193 | 24 #include "msn.h" |
| 25 #include "userlist.h" | |
| 26 | |
| 27 const char *lists[] = { "FL", "AL", "BL", "RL" }; | |
| 28 | |
| 29 typedef struct | |
| 30 { | |
| 31 GaimConnection *gc; | |
| 32 char *who; | |
| 33 | |
| 34 } MsnPermitAdd; | |
| 35 | |
| 36 /************************************************************************** | |
| 37 * Callbacks | |
| 38 **************************************************************************/ | |
| 39 static void | |
| 40 msn_accept_add_cb(MsnPermitAdd *pa) | |
| 41 { | |
| 42 if (g_list_find(gaim_connections_get_all(), pa->gc) != NULL) | |
| 43 { | |
| 44 MsnSession *session = pa->gc->proto_data; | |
| 45 MsnUserList *userlist = session->userlist; | |
| 46 | |
| 47 msn_userlist_add_buddy(userlist, pa->who, MSN_LIST_AL, NULL); | |
| 48 | |
| 49 /* TODO: This ask for the alias, right? */ | |
| 50 gaim_account_notify_added(pa->gc->account, NULL, pa->who, NULL, NULL); | |
| 51 } | |
| 52 | |
| 53 g_free(pa->who); | |
| 54 g_free(pa); | |
| 55 } | |
| 56 | |
| 57 static void | |
| 58 msn_cancel_add_cb(MsnPermitAdd *pa) | |
| 59 { | |
| 60 if (g_list_find(gaim_connections_get_all(), pa->gc) != NULL) | |
| 61 { | |
| 62 MsnSession *session = pa->gc->proto_data; | |
| 63 MsnUserList *userlist = session->userlist; | |
| 64 | |
| 65 msn_userlist_add_buddy(userlist, pa->who, MSN_LIST_BL, NULL); | |
| 66 } | |
| 67 | |
| 68 g_free(pa->who); | |
| 69 g_free(pa); | |
| 70 } | |
| 71 | |
| 72 static void | |
| 9976 | 73 got_new_entry(GaimConnection *gc, const char *passport, const char *friendly) |
| 9193 | 74 { |
| 75 MsnPermitAdd *pa; | |
| 10774 | 76 char *msg; |
| 9193 | 77 |
| 78 pa = g_new0(MsnPermitAdd, 1); | |
| 79 pa->who = g_strdup(passport); | |
| 80 pa->gc = gc; | |
| 81 | |
|
9210
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
82 if (friendly != NULL) |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
83 { |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
84 msg = g_strdup_printf( |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
85 _("The user %s (%s) wants to add %s to his or her " |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
86 "buddy list."), |
| 10774 | 87 passport, friendly, |
|
9210
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
88 gaim_account_get_username(gc->account)); |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
89 } |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
90 else |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
91 { |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
92 msg = g_strdup_printf( |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
93 _("The user %s wants to add %s to his or " |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
94 "her buddy list."), |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
95 passport, gaim_account_get_username(gc->account)); |
|
62b601ddb4bc
[gaim-migrate @ 10005]
Christian Hammond <chipx86@chipx86.com>
parents:
9208
diff
changeset
|
96 } |
| 9193 | 97 |
| 9976 | 98 gaim_request_action(gc, NULL, msg, NULL, |
| 9948 | 99 GAIM_DEFAULT_ACTION_NONE, pa, 2, |
| 9193 | 100 _("Authorize"), G_CALLBACK(msn_accept_add_cb), |
| 101 _("Deny"), G_CALLBACK(msn_cancel_add_cb)); | |
| 102 | |
| 103 g_free(msg); | |
| 104 } | |
| 105 | |
| 106 /************************************************************************** | |
| 107 * Utility functions | |
| 108 **************************************************************************/ | |
| 109 | |
| 110 static gboolean | |
| 111 user_is_in_group(MsnUser *user, int group_id) | |
| 112 { | |
| 113 if (user == NULL) | |
| 114 return FALSE; | |
| 115 | |
| 116 if (group_id < 0) | |
| 117 return FALSE; | |
| 118 | |
| 119 if (g_list_find(user->group_ids, GINT_TO_POINTER(group_id))) | |
| 120 return TRUE; | |
| 121 | |
| 122 return FALSE; | |
| 123 } | |
| 124 | |
| 125 static gboolean | |
| 126 user_is_there(MsnUser *user, int list_id, int group_id) | |
| 127 { | |
| 128 int list_op; | |
| 129 | |
| 130 if (user == NULL) | |
| 131 return FALSE; | |
| 132 | |
| 133 list_op = 1 << list_id; | |
| 134 | |
| 135 if (!(user->list_op & list_op)) | |
| 136 return FALSE; | |
| 137 | |
| 138 if (list_id == MSN_LIST_FL) | |
| 139 { | |
| 140 if (group_id >= 0) | |
| 141 return user_is_in_group(user, group_id); | |
| 142 } | |
| 143 | |
| 144 return TRUE; | |
| 145 } | |
| 146 | |
| 147 static const char* | |
| 148 get_store_name(MsnUser *user) | |
| 149 { | |
| 150 const char *store_name; | |
| 151 | |
| 152 g_return_val_if_fail(user != NULL, NULL); | |
| 153 | |
| 10533 | 154 store_name = msn_user_get_store_name(user); |
| 155 | |
| 156 if (store_name != NULL) | |
| 157 store_name = gaim_url_encode(store_name); | |
| 158 else | |
| 159 store_name = msn_user_get_passport(user); | |
| 9193 | 160 |
| 10533 | 161 /* this might be a bit of a hack, but it should prevent notification server |
| 162 * disconnections for people who have buddies with insane friendly names | |
| 163 * who added you to their buddy list from being disconnected. Stu. */ | |
| 164 /* Shx: What? Isn't the store_name obtained from the server, and hence it's | |
| 165 * below the BUDDY_ALIAS_MAXLEN ? */ | |
| 166 /* Stu: yeah, that's why it's a bit of a hack, as you pointed out, we're | |
| 167 * probably decoding the incoming store_name wrong, or something. bleh. */ | |
| 168 | |
| 169 if (strlen(store_name) > BUDDY_ALIAS_MAXLEN) | |
| 170 store_name = msn_user_get_passport(user); | |
| 171 | |
| 172 return store_name; | |
| 9193 | 173 } |
| 174 | |
| 175 static void | |
| 176 msn_request_add_group(MsnUserList *userlist, const char *who, | |
| 177 const char *old_group_name, const char *new_group_name) | |
| 178 { | |
| 179 MsnCmdProc *cmdproc; | |
| 180 MsnTransaction *trans; | |
| 9218 | 181 MsnMoveBuddy *data; |
| 9193 | 182 |
| 183 cmdproc = userlist->session->notification->cmdproc; | |
| 9218 | 184 data = g_new0(MsnMoveBuddy, 1); |
| 9193 | 185 |
| 186 data->who = g_strdup(who); | |
| 187 | |
| 188 if (old_group_name) | |
| 189 data->old_group_name = g_strdup(old_group_name); | |
| 190 | |
| 10225 | 191 trans = msn_transaction_new(cmdproc, "ADG", "%s %d", |
| 9193 | 192 gaim_url_encode(new_group_name), |
| 193 0); | |
| 194 | |
| 195 msn_transaction_set_data(trans, data); | |
| 196 | |
| 197 msn_cmdproc_send_trans(cmdproc, trans); | |
| 198 } | |
| 199 | |
| 200 /************************************************************************** | |
| 201 * Server functions | |
| 202 **************************************************************************/ | |
| 203 | |
| 204 MsnListId | |
| 205 msn_get_list_id(const char *list) | |
| 206 { | |
| 207 if (list[0] == 'F') | |
| 208 return MSN_LIST_FL; | |
| 209 else if (list[0] == 'A') | |
| 210 return MSN_LIST_AL; | |
| 211 else if (list[0] == 'B') | |
| 212 return MSN_LIST_BL; | |
| 213 else if (list[0] == 'R') | |
| 214 return MSN_LIST_RL; | |
| 215 | |
| 216 return -1; | |
| 217 } | |
| 218 | |
| 219 void | |
| 220 msn_got_add_user(MsnSession *session, MsnUser *user, | |
| 221 MsnListId list_id, int group_id) | |
| 222 { | |
| 223 GaimAccount *account; | |
| 224 const char *passport; | |
| 225 const char *friendly; | |
| 226 | |
| 227 account = session->account; | |
| 228 | |
| 229 passport = msn_user_get_passport(user); | |
| 230 friendly = msn_user_get_friendly_name(user); | |
|
9197
ec417d2f9666
[gaim-migrate @ 9992]
Christian Hammond <chipx86@chipx86.com>
parents:
9196
diff
changeset
|
231 |
| 9193 | 232 if (list_id == MSN_LIST_FL) |
| 233 { | |
| 9861 | 234 GaimConnection *gc; |
| 235 | |
| 236 gc = gaim_account_get_connection(account); | |
| 9193 | 237 |
| 238 serv_got_alias(gc, passport, friendly); | |
| 239 | |
| 240 if (group_id >= 0) | |
| 241 { | |
| 242 msn_user_add_group_id(user, group_id); | |
| 243 return; | |
| 244 } | |
| 245 else | |
| 246 { | |
| 247 /* session->sync->fl_users_count++; */ | |
| 248 } | |
| 249 } | |
| 250 else if (list_id == MSN_LIST_AL) | |
| 251 { | |
| 252 gaim_privacy_permit_add(account, passport, TRUE); | |
| 253 } | |
| 254 else if (list_id == MSN_LIST_BL) | |
| 255 { | |
| 256 gaim_privacy_deny_add(account, passport, TRUE); | |
| 257 } | |
| 258 else if (list_id == MSN_LIST_RL) | |
| 259 { | |
| 9861 | 260 GaimConnection *gc; |
| 261 | |
| 262 gc = gaim_account_get_connection(account); | |
| 9193 | 263 |
| 264 gaim_debug_info("msn", | |
| 265 "%s has added you to his or her contact list.\n", | |
| 266 passport); | |
| 267 | |
| 10583 | 268 if (!(user->list_op & (MSN_LIST_AL_OP | MSN_LIST_BL_OP))) |
|
9223
f46154d6de2b
[gaim-migrate @ 10019]
Christian Hammond <chipx86@chipx86.com>
parents:
9218
diff
changeset
|
269 { |
| 9193 | 270 got_new_entry(gc, passport, friendly); |
|
9223
f46154d6de2b
[gaim-migrate @ 10019]
Christian Hammond <chipx86@chipx86.com>
parents:
9218
diff
changeset
|
271 } |
| 9193 | 272 } |
| 273 | |
| 274 user->list_op |= (1 << list_id); | |
| 275 /* gaim_user_add_list_id (user, list_id); */ | |
| 276 } | |
| 277 | |
| 278 void | |
| 279 msn_got_rem_user(MsnSession *session, MsnUser *user, | |
| 280 MsnListId list_id, int group_id) | |
| 281 { | |
| 282 GaimAccount *account; | |
| 283 const char *passport; | |
| 284 | |
| 285 account = session->account; | |
| 286 | |
| 287 passport = msn_user_get_passport(user); | |
| 288 | |
| 289 if (list_id == MSN_LIST_FL) | |
| 290 { | |
| 291 /* TODO: When is the user totally removed? */ | |
| 292 if (group_id >= 0) | |
| 293 { | |
| 294 msn_user_remove_group_id(user, group_id); | |
| 295 return; | |
| 296 } | |
| 297 else | |
| 298 { | |
| 299 /* session->sync->fl_users_count--; */ | |
| 300 } | |
| 301 } | |
| 302 else if (list_id == MSN_LIST_AL) | |
| 303 { | |
| 304 gaim_privacy_permit_remove(account, passport, TRUE); | |
| 305 } | |
| 306 else if (list_id == MSN_LIST_BL) | |
| 307 { | |
| 308 gaim_privacy_deny_remove(account, passport, TRUE); | |
| 309 } | |
| 310 else if (list_id == MSN_LIST_RL) | |
| 311 { | |
| 312 gaim_debug_info("msn", | |
| 313 "%s has removed you from his or her contact list.\n", | |
| 314 passport); | |
| 315 } | |
| 316 | |
| 317 user->list_op &= ~(1 << list_id); | |
| 318 /* gaim_user_remove_list_id (user, list_id); */ | |
| 319 | |
| 320 if (user->list_op == 0) | |
| 321 { | |
| 322 gaim_debug_info("msn", "Buddy '%s' shall be deleted?.\n", | |
| 323 passport); | |
| 324 | |
| 325 } | |
| 326 } | |
| 327 | |
| 328 void | |
| 329 msn_got_lst_user(MsnSession *session, MsnUser *user, | |
| 330 int list_op, GSList *group_ids) | |
| 331 { | |
| 332 GaimConnection *gc; | |
| 333 GaimAccount *account; | |
| 334 const char *passport; | |
| 335 const char *store; | |
| 336 | |
| 337 account = session->account; | |
| 338 gc = gaim_account_get_connection(account); | |
| 339 | |
| 340 passport = msn_user_get_passport(user); | |
|
9211
74c81f56b0a5
[gaim-migrate @ 10006]
Christian Hammond <chipx86@chipx86.com>
parents:
9210
diff
changeset
|
341 store = msn_user_get_store_name(user); |
| 9193 | 342 |
| 343 if (list_op & MSN_LIST_FL_OP) | |
| 344 { | |
| 345 GSList *c; | |
| 346 for (c = group_ids; c != NULL; c = g_slist_next(c)) | |
| 347 { | |
| 348 int group_id; | |
| 349 group_id = GPOINTER_TO_INT(c->data); | |
| 350 msn_user_add_group_id(user, group_id); | |
| 351 } | |
| 352 | |
| 353 /* FIXME: It might be a real alias */ | |
| 354 /* serv_got_alias(gc, passport, store); */ | |
| 355 } | |
| 356 | |
| 357 if (list_op & MSN_LIST_AL_OP) | |
| 358 { | |
| 359 /* These are users who are allowed to see our status. */ | |
| 360 | |
| 361 if (g_slist_find_custom(account->deny, passport, | |
| 362 (GCompareFunc)strcmp)) | |
| 363 { | |
| 364 gaim_privacy_deny_remove(gc->account, passport, TRUE); | |
| 365 } | |
| 366 | |
| 367 gaim_privacy_permit_add(account, passport, TRUE); | |
| 368 } | |
| 369 | |
| 370 if (list_op & MSN_LIST_BL_OP) | |
| 371 { | |
| 372 /* These are users who are not allowed to see our status. */ | |
| 373 | |
| 374 if (g_slist_find_custom(account->permit, passport, | |
| 375 (GCompareFunc)strcmp)) | |
| 376 { | |
| 377 gaim_privacy_permit_remove(gc->account, passport, TRUE); | |
| 378 } | |
| 379 | |
| 380 gaim_privacy_deny_add(account, passport, TRUE); | |
| 381 } | |
| 382 | |
| 383 if (list_op & MSN_LIST_RL_OP) | |
| 384 { | |
| 385 /* These are users who have us on their contact list. */ | |
| 386 /* TODO: what does store name is when this happens? */ | |
| 387 | |
| 10583 | 388 if (!(list_op & (MSN_LIST_AL_OP | MSN_LIST_BL_OP))) |
|
9225
554ef91db2dd
[gaim-migrate @ 10021]
Christian Hammond <chipx86@chipx86.com>
parents:
9223
diff
changeset
|
389 { |
| 9193 | 390 got_new_entry(gc, passport, store); |
|
9225
554ef91db2dd
[gaim-migrate @ 10021]
Christian Hammond <chipx86@chipx86.com>
parents:
9223
diff
changeset
|
391 } |
| 9193 | 392 } |
| 393 | |
| 394 user->list_op = list_op; | |
| 395 } | |
| 396 | |
| 397 /************************************************************************** | |
| 398 * UserList functions | |
| 399 **************************************************************************/ | |
| 400 | |
| 401 MsnUserList* | |
| 402 msn_userlist_new(MsnSession *session) | |
| 403 { | |
| 404 MsnUserList *userlist; | |
|
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
405 |
| 9193 | 406 userlist = g_new0(MsnUserList, 1); |
| 407 | |
| 408 userlist->session = session; | |
| 9860 | 409 userlist->buddy_icon_requests = g_queue_new(); |
| 410 userlist->buddy_icon_window = 5; | |
| 9193 | 411 |
| 412 return userlist; | |
| 413 } | |
| 414 | |
| 415 void | |
| 416 msn_userlist_destroy(MsnUserList *userlist) | |
| 417 { | |
| 418 GList *l; | |
| 419 | |
| 420 for (l = userlist->users; l != NULL; l = l->next) | |
| 421 { | |
| 422 msn_user_destroy(l->data); | |
| 423 } | |
| 424 | |
| 425 g_list_free(userlist->users); | |
| 426 | |
| 427 for (l = userlist->groups; l != NULL; l = l->next) | |
| 428 { | |
| 429 msn_group_destroy(l->data); | |
| 430 } | |
| 431 | |
| 432 g_list_free(userlist->groups); | |
| 9895 | 433 |
| 434 g_queue_free(userlist->buddy_icon_requests); | |
| 9857 | 435 g_free(userlist); |
| 9193 | 436 } |
| 437 | |
| 438 void | |
| 439 msn_userlist_add_user(MsnUserList *userlist, MsnUser *user) | |
| 440 { | |
| 441 userlist->users = g_list_append(userlist->users, user); | |
| 442 } | |
| 443 | |
| 444 void | |
| 445 msn_userlist_remove_user(MsnUserList *userlist, MsnUser *user) | |
| 446 { | |
| 447 userlist->users = g_list_remove(userlist->users, user); | |
| 448 } | |
| 449 | |
| 450 MsnUser * | |
| 451 msn_userlist_find_user(MsnUserList *userlist, const char *passport) | |
| 452 { | |
| 453 GList *l; | |
| 454 | |
| 455 g_return_val_if_fail(passport != NULL, NULL); | |
| 456 | |
| 457 for (l = userlist->users; l != NULL; l = l->next) | |
| 458 { | |
| 459 MsnUser *user = (MsnUser *)l->data; | |
| 460 | |
| 461 g_return_val_if_fail(user->passport != NULL, NULL); | |
| 462 | |
| 463 if (!strcmp(passport, user->passport)) | |
| 464 return user; | |
| 465 } | |
| 466 | |
| 467 return NULL; | |
| 468 } | |
| 469 | |
| 470 void | |
| 471 msn_userlist_add_group(MsnUserList *userlist, MsnGroup *group) | |
| 472 { | |
| 473 userlist->groups = g_list_append(userlist->groups, group); | |
| 474 } | |
| 475 | |
| 476 void | |
| 477 msn_userlist_remove_group(MsnUserList *userlist, MsnGroup *group) | |
| 478 { | |
| 479 userlist->groups = g_list_remove(userlist->groups, group); | |
| 480 } | |
| 481 | |
| 482 MsnGroup * | |
| 483 msn_userlist_find_group_with_id(MsnUserList *userlist, int id) | |
| 484 { | |
| 485 GList *l; | |
| 486 | |
| 487 g_return_val_if_fail(userlist != NULL, NULL); | |
| 488 g_return_val_if_fail(id >= 0, NULL); | |
| 489 | |
| 490 for (l = userlist->groups; l != NULL; l = l->next) | |
| 491 { | |
| 492 MsnGroup *group = l->data; | |
| 493 | |
| 494 if (group->id == id) | |
| 495 return group; | |
| 496 } | |
| 497 | |
| 498 return NULL; | |
| 499 } | |
| 500 | |
| 501 MsnGroup * | |
| 502 msn_userlist_find_group_with_name(MsnUserList *userlist, const char *name) | |
| 503 { | |
| 504 GList *l; | |
| 505 | |
| 506 g_return_val_if_fail(userlist != NULL, NULL); | |
| 507 g_return_val_if_fail(name != NULL, NULL); | |
| 508 | |
| 509 for (l = userlist->groups; l != NULL; l = l->next) | |
| 510 { | |
| 511 MsnGroup *group = l->data; | |
| 512 | |
| 513 if ((group->name != NULL) && !g_ascii_strcasecmp(name, group->name)) | |
| 514 return group; | |
| 515 } | |
| 516 | |
| 517 return NULL; | |
| 518 } | |
| 519 | |
| 520 int | |
| 521 msn_userlist_find_group_id(MsnUserList *userlist, const char *group_name) | |
| 522 { | |
| 523 MsnGroup *group; | |
|
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
524 |
| 9193 | 525 group = msn_userlist_find_group_with_name(userlist, group_name); |
| 526 | |
| 527 if (group != NULL) | |
| 528 return msn_group_get_id(group); | |
| 529 else | |
| 530 return -1; | |
| 531 } | |
| 532 | |
| 533 const char * | |
| 534 msn_userlist_find_group_name(MsnUserList *userlist, int group_id) | |
| 535 { | |
| 536 MsnGroup *group; | |
|
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9197
diff
changeset
|
537 |
| 9193 | 538 group = msn_userlist_find_group_with_id(userlist, group_id); |
| 539 | |
| 540 if (group != NULL) | |
| 541 return msn_group_get_name(group); | |
| 542 else | |
| 543 return NULL; | |
| 544 } | |
| 545 | |
| 546 void | |
| 547 msn_userlist_rename_group_id(MsnUserList *userlist, int group_id, | |
| 548 const char *new_name) | |
| 549 { | |
| 550 MsnGroup *group; | |
| 551 | |
| 552 group = msn_userlist_find_group_with_id(userlist, group_id); | |
| 553 | |
| 554 if (group != NULL) | |
| 555 msn_group_set_name(group, new_name); | |
| 556 } | |
| 557 | |
| 558 void | |
| 559 msn_userlist_remove_group_id(MsnUserList *userlist, int group_id) | |
| 560 { | |
| 561 MsnGroup *group; | |
| 562 | |
| 563 group = msn_userlist_find_group_with_id(userlist, group_id); | |
| 564 | |
| 565 if (group != NULL) | |
| 10533 | 566 { |
| 9193 | 567 msn_userlist_remove_group(userlist, group); |
| 10533 | 568 msn_group_destroy(group); |
| 569 } | |
| 9193 | 570 } |
| 571 | |
| 572 void | |
| 573 msn_userlist_rem_buddy(MsnUserList *userlist, | |
| 574 const char *who, int list_id, const char *group_name) | |
| 575 { | |
| 576 MsnUser *user; | |
| 577 int group_id; | |
| 578 const char *list; | |
| 579 | |
| 580 user = msn_userlist_find_user(userlist, who); | |
| 581 group_id = -1; | |
| 582 | |
| 583 if (group_name != NULL) | |
| 584 { | |
| 585 group_id = msn_userlist_find_group_id(userlist, group_name); | |
| 586 | |
| 587 if (group_id < 0) | |
| 588 { | |
| 589 /* Whoa, there is no such group. */ | |
| 590 gaim_debug_error("msn", "Group doesn't exist: %s\n", group_name); | |
| 591 return; | |
| 592 } | |
| 593 } | |
| 594 | |
| 595 /* First we're going to check if not there. */ | |
| 596 if (!(user_is_there(user, list_id, group_id))) | |
| 597 { | |
| 598 list = lists[list_id]; | |
| 599 gaim_debug_error("msn", "User '%s' is not there: %s\n", | |
| 600 who, list); | |
| 601 return; | |
| 602 } | |
| 603 | |
| 604 /* Then request the rem to the server. */ | |
| 605 list = lists[list_id]; | |
| 606 | |
| 607 msn_notification_rem_buddy(userlist->session->notification, list, who, group_id); | |
| 608 } | |
| 609 | |
| 610 void | |
| 611 msn_userlist_add_buddy(MsnUserList *userlist, | |
| 612 const char *who, int list_id, | |
| 613 const char *group_name) | |
| 614 { | |
| 615 MsnUser *user; | |
| 616 int group_id; | |
| 617 const char *list; | |
| 618 const char *store_name; | |
|
9194
364aa73323b5
[gaim-migrate @ 9989]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
619 |
| 9193 | 620 group_id = -1; |
| 621 | |
| 622 if (group_name != NULL) | |
| 623 { | |
| 624 group_id = msn_userlist_find_group_id(userlist, group_name); | |
| 625 | |
| 626 if (group_id < 0) | |
| 627 { | |
| 628 /* Whoa, we must add that group first. */ | |
| 629 msn_request_add_group(userlist, who, NULL, group_name); | |
| 630 return; | |
| 631 } | |
| 632 } | |
| 633 | |
| 634 user = msn_userlist_find_user(userlist, who); | |
| 635 | |
|
9194
364aa73323b5
[gaim-migrate @ 9989]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
636 /* First we're going to check if it's already there. */ |
| 9193 | 637 if (user_is_there(user, list_id, group_id)) |
| 638 { | |
| 639 list = lists[list_id]; | |
|
9194
364aa73323b5
[gaim-migrate @ 9989]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
640 gaim_debug_error("msn", "User '%s' is already there: %s\n", who, list); |
| 9193 | 641 return; |
| 642 } | |
| 643 | |
| 644 store_name = (user != NULL) ? get_store_name(user) : who; | |
| 645 | |
| 646 /* Then request the add to the server. */ | |
| 647 list = lists[list_id]; | |
| 648 | |
| 649 msn_notification_add_buddy(userlist->session->notification, list, who, | |
| 650 store_name, group_id); | |
| 651 } | |
| 652 | |
| 653 void | |
| 654 msn_userlist_move_buddy(MsnUserList *userlist, const char *who, | |
| 655 const char *old_group_name, const char *new_group_name) | |
| 656 { | |
| 657 int new_group_id; | |
| 658 | |
| 659 new_group_id = msn_userlist_find_group_id(userlist, new_group_name); | |
| 660 | |
| 661 if (new_group_id < 0) | |
| 662 { | |
| 663 msn_request_add_group(userlist, who, old_group_name, new_group_name); | |
| 664 return; | |
| 665 } | |
| 666 | |
| 10568 | 667 msn_userlist_add_buddy(userlist, who, MSN_LIST_FL, new_group_name); |
| 9193 | 668 msn_userlist_rem_buddy(userlist, who, MSN_LIST_FL, old_group_name); |
| 669 } |
