Mercurial > pidgin
annotate src/protocols/jabber/buddy.c @ 11202:ff4884029708
[gaim-migrate @ 13330]
Some compile warning fixes. It's very possible the perl warnings
were caused by some of my changes to the core last week
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 08 Aug 2005 02:21:57 +0000 |
| parents | 8dca96cbcd64 |
| children | 10066662176a |
| rev | line source |
|---|---|
| 7014 | 1 /* |
| 2 * gaim - Jabber Protocol Plugin | |
| 3 * | |
| 4 * Copyright (C) 2003, Nathan Walp <faceprint@faceprint.com> | |
| 5 * | |
| 6 * This program is free software; you can redistribute it and/or modify | |
| 7 * it under the terms of the GNU General Public License as published by | |
| 8 * the Free Software Foundation; either version 2 of the License, or | |
| 9 * (at your option) any later version. | |
| 10 * | |
| 11 * This program is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 * GNU General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
| 17 * along with this program; if not, write to the Free Software | |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 * | |
| 20 */ | |
| 21 #include "internal.h" | |
|
10684
72a5babfa8b4
[gaim-migrate @ 12231]
Luke Schierer <lschiere@pidgin.im>
parents:
10662
diff
changeset
|
22 #include "cipher.h" |
| 7014 | 23 #include "debug.h" |
| 7076 | 24 #include "imgstore.h" |
| 9713 | 25 #include "prpl.h" |
| 7014 | 26 #include "notify.h" |
| 27 #include "request.h" | |
| 28 #include "util.h" | |
| 7395 | 29 #include "xmlnode.h" |
| 7014 | 30 |
| 31 #include "buddy.h" | |
| 32 #include "chat.h" | |
| 33 #include "jabber.h" | |
| 34 #include "iq.h" | |
| 35 #include "presence.h" | |
| 36 | |
| 7116 | 37 void jabber_buddy_free(JabberBuddy *jb) |
| 38 { | |
| 39 g_return_if_fail(jb != NULL); | |
| 40 | |
| 41 if(jb->error_msg) | |
| 42 g_free(jb->error_msg); | |
| 43 while(jb->resources) | |
| 44 jabber_buddy_resource_free(jb->resources->data); | |
| 45 | |
| 46 g_free(jb); | |
| 47 } | |
| 48 | |
| 7014 | 49 JabberBuddy *jabber_buddy_find(JabberStream *js, const char *name, |
| 50 gboolean create) | |
| 51 { | |
| 52 JabberBuddy *jb; | |
| 7445 | 53 const char *realname; |
| 7014 | 54 |
| 7445 | 55 if(!(realname = jabber_normalize(js->gc->account, name))) |
| 7014 | 56 return NULL; |
| 57 | |
| 58 jb = g_hash_table_lookup(js->buddies, realname); | |
| 59 | |
| 60 if(!jb && create) { | |
| 61 jb = g_new0(JabberBuddy, 1); | |
| 62 g_hash_table_insert(js->buddies, g_strdup(realname), jb); | |
| 63 } | |
| 64 | |
| 65 return jb; | |
| 66 } | |
| 67 | |
| 68 | |
| 69 JabberBuddyResource *jabber_buddy_find_resource(JabberBuddy *jb, | |
| 70 const char *resource) | |
| 71 { | |
| 72 JabberBuddyResource *jbr = NULL; | |
| 73 GList *l; | |
| 74 | |
| 75 if(!jb) | |
| 76 return NULL; | |
| 77 | |
| 78 for(l = jb->resources; l; l = l->next) | |
| 79 { | |
| 80 if(!jbr && !resource) { | |
| 81 jbr = l->data; | |
| 82 } else if(!resource) { | |
| 83 if(((JabberBuddyResource *)l->data)->priority >= jbr->priority) | |
| 84 jbr = l->data; | |
| 85 } else if(((JabberBuddyResource *)l->data)->name) { | |
| 86 if(!strcmp(((JabberBuddyResource *)l->data)->name, resource)) { | |
| 87 jbr = l->data; | |
| 88 break; | |
| 89 } | |
| 90 } | |
| 91 } | |
| 92 | |
| 93 return jbr; | |
| 94 } | |
| 95 | |
| 9954 | 96 JabberBuddyResource *jabber_buddy_track_resource(JabberBuddy *jb, const char *resource, |
| 97 int priority, JabberBuddyState state, const char *status) | |
| 7014 | 98 { |
| 99 JabberBuddyResource *jbr = jabber_buddy_find_resource(jb, resource); | |
| 100 | |
| 101 if(!jbr) { | |
| 102 jbr = g_new0(JabberBuddyResource, 1); | |
| 7116 | 103 jbr->jb = jb; |
| 7014 | 104 jbr->name = g_strdup(resource); |
| 105 jbr->capabilities = JABBER_CAP_XHTML; | |
| 106 jb->resources = g_list_append(jb->resources, jbr); | |
| 107 } | |
| 108 jbr->priority = priority; | |
| 109 jbr->state = state; | |
| 110 if(jbr->status) | |
| 111 g_free(jbr->status); | |
| 112 jbr->status = g_strdup(status); | |
| 9954 | 113 |
| 114 return jbr; | |
| 7014 | 115 } |
| 116 | |
| 7116 | 117 void jabber_buddy_resource_free(JabberBuddyResource *jbr) |
| 118 { | |
| 119 g_return_if_fail(jbr != NULL); | |
| 120 | |
| 121 jbr->jb->resources = g_list_remove(jbr->jb->resources, jbr); | |
| 122 | |
| 123 g_free(jbr->name); | |
| 124 if(jbr->status) | |
| 125 g_free(jbr->status); | |
| 8400 | 126 if(jbr->thread_id) |
| 127 g_free(jbr->thread_id); | |
| 7116 | 128 g_free(jbr); |
| 129 } | |
| 130 | |
| 7014 | 131 void jabber_buddy_remove_resource(JabberBuddy *jb, const char *resource) |
| 132 { | |
| 133 JabberBuddyResource *jbr = jabber_buddy_find_resource(jb, resource); | |
| 134 | |
| 135 if(!jbr) | |
| 136 return; | |
| 137 | |
| 7116 | 138 jabber_buddy_resource_free(jbr); |
| 7014 | 139 } |
| 140 | |
| 141 const char *jabber_buddy_get_status_msg(JabberBuddy *jb) | |
| 142 { | |
| 143 JabberBuddyResource *jbr; | |
| 144 | |
| 145 if(!jb) | |
| 146 return NULL; | |
| 147 | |
| 148 jbr = jabber_buddy_find_resource(jb, NULL); | |
| 149 | |
| 150 if(!jbr) | |
| 151 return NULL; | |
| 152 | |
| 153 return jbr->status; | |
| 154 } | |
| 155 | |
| 156 /******* | |
| 157 * This is the old vCard stuff taken from the old prpl. vCards, by definition | |
| 158 * are a temporary thing until jabber can get its act together and come up | |
| 159 * with a format for user information, hence the namespace of 'vcard-temp' | |
| 160 * | |
| 161 * Since I don't feel like putting that much work into something that's | |
| 162 * _supposed_ to go away, i'm going to just copy the kludgy old code here, | |
| 163 * and make it purdy when jabber comes up with a standards-track JEP to | |
| 164 * replace vcard-temp | |
| 165 * --Nathan | |
| 166 *******/ | |
| 167 | |
| 168 /*---------------------------------------*/ | |
| 169 /* Jabber "set info" (vCard) support */ | |
| 170 /*---------------------------------------*/ | |
| 171 | |
| 172 /* | |
| 173 * V-Card format: | |
| 174 * | |
| 175 * <vCard prodid='' version='' xmlns=''> | |
| 176 * <FN></FN> | |
| 177 * <N> | |
| 178 * <FAMILY/> | |
| 179 * <GIVEN/> | |
| 180 * </N> | |
| 181 * <NICKNAME/> | |
| 182 * <URL/> | |
| 183 * <ADR> | |
| 184 * <STREET/> | |
| 185 * <EXTADD/> | |
| 186 * <LOCALITY/> | |
| 187 * <REGION/> | |
| 188 * <PCODE/> | |
| 189 * <COUNTRY/> | |
| 190 * </ADR> | |
| 191 * <TEL/> | |
| 192 * <EMAIL/> | |
| 193 * <ORG> | |
| 194 * <ORGNAME/> | |
| 195 * <ORGUNIT/> | |
| 196 * </ORG> | |
| 197 * <TITLE/> | |
| 198 * <ROLE/> | |
| 199 * <DESC/> | |
| 200 * <BDAY/> | |
| 201 * </vCard> | |
| 202 * | |
| 203 * See also: | |
| 204 * | |
| 205 * http://docs.jabber.org/proto/html/vcard-temp.html | |
| 206 * http://www.vcard-xml.org/dtd/vCard-XML-v2-20010520.dtd | |
| 207 */ | |
| 208 | |
| 209 /* | |
| 210 * Cross-reference user-friendly V-Card entry labels to vCard XML tags | |
| 211 * and attributes. | |
| 212 * | |
| 213 * Order is (or should be) unimportant. For example: we have no way of | |
| 214 * knowing in what order real data will arrive. | |
| 215 * | |
| 216 * Format: Label, Pre-set text, "visible" flag, "editable" flag, XML tag | |
| 217 * name, XML tag's parent tag "path" (relative to vCard node). | |
| 218 * | |
| 219 * List is terminated by a NULL label pointer. | |
| 220 * | |
| 221 * Entries with no label text, but with XML tag and parent tag | |
| 222 * entries, are used by V-Card XML construction routines to | |
| 223 * "automagically" construct the appropriate XML node tree. | |
| 224 * | |
| 225 * Thoughts on future direction/expansion | |
| 226 * | |
| 227 * This is a "simple" vCard. | |
| 228 * | |
| 229 * It is possible for nodes other than the "vCard" node to have | |
| 230 * attributes. Should that prove necessary/desirable, add an | |
| 231 * "attributes" pointer to the vcard_template struct, create the | |
| 232 * necessary tag_attr structs, and add 'em to the vcard_dflt_data | |
| 233 * array. | |
| 234 * | |
| 235 * The above changes will (obviously) require changes to the vCard | |
| 236 * construction routines. | |
| 237 */ | |
| 238 | |
| 239 struct vcard_template { | |
| 240 char *label; /* label text pointer */ | |
| 241 char *text; /* entry text pointer */ | |
| 242 int visible; /* should entry field be "visible?" */ | |
| 243 int editable; /* should entry field be editable? */ | |
| 244 char *tag; /* tag text */ | |
| 245 char *ptag; /* parent tag "path" text */ | |
| 246 char *url; /* vCard display format if URL */ | |
| 247 } vcard_template_data[] = { | |
| 248 {N_("Full Name"), NULL, TRUE, TRUE, "FN", NULL, NULL}, | |
| 249 {N_("Family Name"), NULL, TRUE, TRUE, "FAMILY", "N", NULL}, | |
| 250 {N_("Given Name"), NULL, TRUE, TRUE, "GIVEN", "N", NULL}, | |
| 251 {N_("Nickname"), NULL, TRUE, TRUE, "NICKNAME", NULL, NULL}, | |
| 252 {N_("URL"), NULL, TRUE, TRUE, "URL", NULL, "<A HREF=\"%s\">%s</A>"}, | |
| 253 {N_("Street Address"), NULL, TRUE, TRUE, "STREET", "ADR", NULL}, | |
| 254 {N_("Extended Address"), NULL, TRUE, TRUE, "EXTADD", "ADR", NULL}, | |
| 255 {N_("Locality"), NULL, TRUE, TRUE, "LOCALITY", "ADR", NULL}, | |
| 256 {N_("Region"), NULL, TRUE, TRUE, "REGION", "ADR", NULL}, | |
| 257 {N_("Postal Code"), NULL, TRUE, TRUE, "PCODE", "ADR", NULL}, | |
| 258 {N_("Country"), NULL, TRUE, TRUE, "COUNTRY", "ADR", NULL}, | |
| 10215 | 259 {N_("Telephone"), NULL, TRUE, TRUE, "TEL", NULL, NULL}, |
| 7014 | 260 {N_("Email"), NULL, TRUE, TRUE, "EMAIL", NULL, "<A HREF=\"mailto:%s\">%s</A>"}, |
| 261 {N_("Organization Name"), NULL, TRUE, TRUE, "ORGNAME", "ORG", NULL}, | |
| 262 {N_("Organization Unit"), NULL, TRUE, TRUE, "ORGUNIT", "ORG", NULL}, | |
| 263 {N_("Title"), NULL, TRUE, TRUE, "TITLE", NULL, NULL}, | |
| 264 {N_("Role"), NULL, TRUE, TRUE, "ROLE", NULL, NULL}, | |
| 265 {N_("Birthday"), NULL, TRUE, TRUE, "BDAY", NULL, NULL}, | |
| 266 {N_("Description"), NULL, TRUE, TRUE, "DESC", NULL, NULL}, | |
| 267 {"", NULL, TRUE, TRUE, "N", NULL, NULL}, | |
| 268 {"", NULL, TRUE, TRUE, "ADR", NULL, NULL}, | |
| 269 {"", NULL, TRUE, TRUE, "ORG", NULL, NULL}, | |
| 270 {NULL, NULL, 0, 0, NULL, NULL, NULL} | |
| 271 }; | |
| 272 | |
| 273 /* | |
|
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8401
diff
changeset
|
274 * The "vCard" tag's attribute list... |
| 7014 | 275 */ |
| 276 struct tag_attr { | |
| 277 char *attr; | |
| 278 char *value; | |
| 279 } vcard_tag_attr_list[] = { | |
| 280 {"prodid", "-//HandGen//NONSGML vGen v1.0//EN"}, | |
| 281 {"version", "2.0", }, | |
| 282 {"xmlns", "vcard-temp", }, | |
| 283 {NULL, NULL}, | |
| 284 }; | |
| 285 | |
| 286 | |
| 287 /* | |
| 288 * Insert a tag node into an xmlnode tree, recursively inserting parent tag | |
| 289 * nodes as necessary | |
| 290 * | |
| 291 * Returns pointer to inserted node | |
| 292 * | |
| 293 * Note to hackers: this code is designed to be re-entrant (it's recursive--it | |
| 294 * calls itself), so don't put any "static"s in here! | |
| 295 */ | |
| 296 static xmlnode *insert_tag_to_parent_tag(xmlnode *start, const char *parent_tag, const char *new_tag) | |
| 297 { | |
| 298 xmlnode *x = NULL; | |
| 299 | |
| 300 /* | |
| 301 * If the parent tag wasn't specified, see if we can get it | |
| 302 * from the vCard template struct. | |
| 303 */ | |
| 304 if(parent_tag == NULL) { | |
| 305 struct vcard_template *vc_tp = vcard_template_data; | |
| 306 | |
| 307 while(vc_tp->label != NULL) { | |
| 308 if(strcmp(vc_tp->tag, new_tag) == 0) { | |
| 309 parent_tag = vc_tp->ptag; | |
| 310 break; | |
| 311 } | |
| 312 ++vc_tp; | |
| 313 } | |
| 314 } | |
| 315 | |
| 316 /* | |
| 317 * If we have a parent tag... | |
| 318 */ | |
| 319 if(parent_tag != NULL ) { | |
| 320 /* | |
| 321 * Try to get the parent node for a tag | |
| 322 */ | |
| 323 if((x = xmlnode_get_child(start, parent_tag)) == NULL) { | |
| 324 /* | |
| 325 * Descend? | |
| 326 */ | |
| 327 char *grand_parent = g_strdup(parent_tag); | |
| 328 char *parent; | |
| 329 | |
| 330 if((parent = strrchr(grand_parent, '/')) != NULL) { | |
| 331 *(parent++) = '\0'; | |
| 332 x = insert_tag_to_parent_tag(start, grand_parent, parent); | |
| 333 } else { | |
| 334 x = xmlnode_new_child(start, grand_parent); | |
| 335 } | |
| 336 g_free(grand_parent); | |
| 337 } else { | |
| 338 /* | |
| 339 * We found *something* to be the parent node. | |
| 340 * Note: may be the "root" node! | |
| 341 */ | |
| 342 xmlnode *y; | |
| 343 if((y = xmlnode_get_child(x, new_tag)) != NULL) { | |
| 344 return(y); | |
| 345 } | |
| 346 } | |
| 347 } | |
| 348 | |
| 349 /* | |
| 350 * insert the new tag into its parent node | |
| 351 */ | |
| 352 return(xmlnode_new_child((x == NULL? start : x), new_tag)); | |
| 353 } | |
| 354 | |
| 355 /* | |
| 356 * Send vCard info to Jabber server | |
| 357 */ | |
| 358 void jabber_set_info(GaimConnection *gc, const char *info) | |
| 359 { | |
| 360 JabberIq *iq; | |
| 361 JabberStream *js = gc->proto_data; | |
| 362 xmlnode *vc_node; | |
| 10189 | 363 const char *avatar_file = NULL; |
| 7014 | 364 |
| 10189 | 365 if(js->avatar_hash) |
| 366 g_free(js->avatar_hash); | |
| 367 js->avatar_hash = NULL; | |
| 7014 | 368 |
| 369 /* | |
| 370 * Send only if there's actually any *information* to send | |
| 371 */ | |
| 372 vc_node = xmlnode_from_str(info, -1); | |
| 10189 | 373 avatar_file = gaim_account_get_buddy_icon(gc->account); |
| 374 | |
| 375 if(!vc_node && avatar_file) { | |
| 376 vc_node = xmlnode_new("vCard"); | |
| 377 } | |
| 7014 | 378 |
| 379 if(vc_node) { | |
| 380 if (vc_node->name && | |
| 10189 | 381 !g_ascii_strncasecmp(vc_node->name, "vCard", 5)) { |
| 382 GError *error = NULL; | |
| 10441 | 383 unsigned char *avatar_data; |
| 10189 | 384 gsize avatar_len; |
| 385 | |
| 10442 | 386 if(avatar_file && g_file_get_contents(avatar_file, (gchar **)&avatar_data, &avatar_len, &error)) { |
| 10941 | 387 xmlnode *photo, *binval; |
| 11127 | 388 gchar *enc; |
| 10189 | 389 int i; |
| 390 unsigned char hashval[20]; | |
| 391 char *p, hash[41]; | |
| 392 | |
| 393 photo = xmlnode_new_child(vc_node, "PHOTO"); | |
| 10941 | 394 binval = xmlnode_new_child(photo, "BINVAL"); |
| 10189 | 395 enc = gaim_base64_encode(avatar_data, avatar_len); |
|
10684
72a5babfa8b4
[gaim-migrate @ 12231]
Luke Schierer <lschiere@pidgin.im>
parents:
10662
diff
changeset
|
396 |
| 11183 | 397 gaim_cipher_digest_region("sha1", (guchar *)avatar_data, |
|
10687
b256ce6b85b8
[gaim-migrate @ 12235]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10684
diff
changeset
|
398 avatar_len, sizeof(hashval), |
|
b256ce6b85b8
[gaim-migrate @ 12235]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10684
diff
changeset
|
399 hashval, NULL); |
|
10684
72a5babfa8b4
[gaim-migrate @ 12231]
Luke Schierer <lschiere@pidgin.im>
parents:
10662
diff
changeset
|
400 |
| 10189 | 401 p = hash; |
| 402 for(i=0; i<20; i++, p+=2) | |
| 403 snprintf(p, 3, "%02x", hashval[i]); | |
| 404 js->avatar_hash = g_strdup(hash); | |
| 405 | |
| 10941 | 406 xmlnode_insert_data(binval, enc, -1); |
| 10189 | 407 g_free(enc); |
| 408 g_free(avatar_data); | |
| 10504 | 409 } else if (error != NULL) { |
| 10189 | 410 g_error_free(error); |
| 411 } | |
| 412 | |
| 7014 | 413 iq = jabber_iq_new(js, JABBER_IQ_SET); |
| 414 xmlnode_insert_child(iq->node, vc_node); | |
| 415 jabber_iq_send(iq); | |
| 416 } else { | |
| 417 xmlnode_free(vc_node); | |
| 418 } | |
| 419 } | |
| 420 } | |
| 421 | |
| 10189 | 422 void jabber_set_buddy_icon(GaimConnection *gc, const char *iconfile) |
| 423 { | |
| 424 GaimPresence *gpresence; | |
| 425 GaimStatus *status; | |
| 426 | |
| 427 jabber_set_info(gc, gaim_account_get_user_info(gc->account)); | |
| 428 | |
| 429 gpresence = gaim_account_get_presence(gc->account); | |
| 430 status = gaim_presence_get_active_status(gpresence); | |
| 10216 | 431 jabber_presence_send(gc->account, status); |
| 10189 | 432 } |
| 433 | |
| 7014 | 434 /* |
| 435 * This is the callback from the "ok clicked" for "set vCard" | |
| 436 * | |
| 437 * Formats GSList data into XML-encoded string and returns a pointer | |
| 438 * to said string. | |
| 439 * | |
| 440 * g_free()'ing the returned string space is the responsibility of | |
| 441 * the caller. | |
| 442 */ | |
| 443 static void | |
| 444 jabber_format_info(GaimConnection *gc, GaimRequestFields *fields) | |
| 445 { | |
| 446 GaimAccount *account; | |
| 447 xmlnode *vc_node; | |
| 448 GaimRequestField *field; | |
| 449 const char *text; | |
| 450 char *p; | |
| 451 const struct vcard_template *vc_tp; | |
| 452 struct tag_attr *tag_attr; | |
| 453 | |
| 454 vc_node = xmlnode_new("vCard"); | |
| 455 | |
| 456 for(tag_attr = vcard_tag_attr_list; tag_attr->attr != NULL; ++tag_attr) | |
| 457 xmlnode_set_attrib(vc_node, tag_attr->attr, tag_attr->value); | |
| 458 | |
| 459 for (vc_tp = vcard_template_data; vc_tp->label != NULL; vc_tp++) { | |
| 460 if (*vc_tp->label == '\0') | |
| 461 continue; | |
| 462 | |
| 463 field = gaim_request_fields_get_field(fields, vc_tp->tag); | |
| 464 text = gaim_request_field_string_get_value(field); | |
| 465 | |
| 466 | |
| 467 if (text != NULL && *text != '\0') { | |
| 468 xmlnode *xp; | |
| 469 | |
| 9339 | 470 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
| 471 "Setting %s to '%s'\n", vc_tp->tag, text); | |
| 472 | |
| 7014 | 473 if ((xp = insert_tag_to_parent_tag(vc_node, |
| 474 NULL, vc_tp->tag)) != NULL) { | |
| 475 | |
| 476 xmlnode_insert_data(xp, text, -1); | |
| 477 } | |
| 478 } | |
| 479 } | |
| 480 | |
| 7642 | 481 p = xmlnode_to_str(vc_node, NULL); |
| 7014 | 482 xmlnode_free(vc_node); |
| 483 | |
| 484 account = gaim_connection_get_account(gc); | |
| 485 | |
| 486 if (account != NULL) { | |
| 487 gaim_account_set_user_info(account, p); | |
| 488 | |
| 489 if (gc != NULL) | |
| 490 serv_set_info(gc, p); | |
| 491 } | |
| 492 | |
| 493 g_free(p); | |
| 494 } | |
| 495 | |
| 496 /* | |
| 497 * This gets executed by the proto action | |
| 498 * | |
| 499 * Creates a new GaimRequestFields struct, gets the XML-formatted user_info | |
| 500 * string (if any) into GSLists for the (multi-entry) edit dialog and | |
| 501 * calls the set_vcard dialog. | |
| 502 */ | |
| 9015 | 503 void jabber_setup_set_info(GaimPluginAction *action) |
| 7014 | 504 { |
| 9015 | 505 GaimConnection *gc = (GaimConnection *) action->context; |
| 7014 | 506 GaimRequestFields *fields; |
| 507 GaimRequestFieldGroup *group; | |
| 508 GaimRequestField *field; | |
| 509 const struct vcard_template *vc_tp; | |
| 510 char *user_info; | |
| 511 char *cdata; | |
| 512 xmlnode *x_vc_data = NULL; | |
| 513 | |
| 514 fields = gaim_request_fields_new(); | |
| 515 group = gaim_request_field_group_new(NULL); | |
| 516 gaim_request_fields_add_group(fields, group); | |
| 517 | |
| 518 /* | |
| 519 * Get existing, XML-formatted, user info | |
| 520 */ | |
| 521 if((user_info = g_strdup(gaim_account_get_user_info(gc->account))) != NULL) | |
| 522 x_vc_data = xmlnode_from_str(user_info, -1); | |
| 523 else | |
| 524 user_info = g_strdup(""); | |
| 525 | |
| 526 /* | |
| 527 * Set up GSLists for edit with labels from "template," data from user info | |
| 528 */ | |
| 529 for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
| 530 xmlnode *data_node; | |
| 531 if((vc_tp->label)[0] == '\0') | |
| 532 continue; | |
| 533 if(vc_tp->ptag == NULL) { | |
| 534 data_node = xmlnode_get_child(x_vc_data, vc_tp->tag); | |
| 535 } else { | |
| 536 gchar *tag = g_strdup_printf("%s/%s", vc_tp->ptag, vc_tp->tag); | |
| 537 data_node = xmlnode_get_child(x_vc_data, tag); | |
| 538 g_free(tag); | |
| 539 } | |
| 540 if(data_node) | |
| 541 cdata = xmlnode_get_data(data_node); | |
| 542 else | |
| 543 cdata = NULL; | |
| 544 | |
| 545 if(strcmp(vc_tp->tag, "DESC") == 0) { | |
| 546 field = gaim_request_field_string_new(vc_tp->tag, | |
| 547 _(vc_tp->label), cdata, | |
| 548 TRUE); | |
| 549 } else { | |
| 550 field = gaim_request_field_string_new(vc_tp->tag, | |
| 551 _(vc_tp->label), cdata, | |
| 552 FALSE); | |
| 553 } | |
| 554 | |
| 555 gaim_request_field_group_add_field(group, field); | |
| 556 } | |
| 557 | |
| 558 if(x_vc_data != NULL) | |
| 559 xmlnode_free(x_vc_data); | |
| 560 | |
| 561 g_free(user_info); | |
| 562 | |
| 563 gaim_request_fields(gc, _("Edit Jabber vCard"), | |
| 564 _("Edit Jabber vCard"), | |
| 565 _("All items below are optional. Enter only the " | |
| 566 "information with which you feel comfortable."), | |
| 567 fields, | |
| 568 _("Save"), G_CALLBACK(jabber_format_info), | |
| 569 _("Cancel"), NULL, | |
| 570 gc); | |
| 571 } | |
| 572 | |
| 573 /*---------------------------------------*/ | |
| 574 /* End Jabber "set info" (vCard) support */ | |
| 575 /*---------------------------------------*/ | |
| 576 | |
| 577 /****** | |
| 578 * end of that ancient crap that needs to die | |
| 579 ******/ | |
| 580 | |
| 581 | |
| 7395 | 582 static void jabber_vcard_parse(JabberStream *js, xmlnode *packet, gpointer data) |
| 7014 | 583 { |
| 584 GList *resources; | |
| 585 const char *from = xmlnode_get_attrib(packet, "from"); | |
| 586 JabberBuddy *jb; | |
| 587 JabberBuddyResource *jbr; | |
| 588 GString *info_text; | |
| 7306 | 589 char *resource_name; |
| 7955 | 590 char *bare_jid; |
| 7014 | 591 char *title; |
| 8213 | 592 char *text; |
| 7014 | 593 xmlnode *vcard; |
| 7955 | 594 GaimBuddy *b; |
| 10189 | 595 GSList *imgids = NULL; |
| 7014 | 596 |
| 597 if(!from) | |
| 598 return; | |
| 599 | |
| 10490 | 600 /* XXX: handle the error case */ |
| 601 | |
| 7014 | 602 resource_name = jabber_get_resource(from); |
| 7955 | 603 bare_jid = jabber_get_bare_jid(from); |
| 604 | |
| 605 b = gaim_find_buddy(js->gc->account, bare_jid); | |
| 7014 | 606 |
| 607 jb = jabber_buddy_find(js, from, TRUE); | |
| 608 info_text = g_string_new(""); | |
| 609 | |
| 8213 | 610 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", _("Jabber ID"), |
| 7014 | 611 from); |
| 612 | |
| 613 if(resource_name) { | |
| 614 jbr = jabber_buddy_find_resource(jb, resource_name); | |
| 615 if(jbr) { | |
| 7145 | 616 char *purdy = NULL; |
| 617 if(jbr->status) | |
| 618 purdy = gaim_strdup_withhtml(jbr->status); | |
| 8213 | 619 g_string_append_printf(info_text, "<b>%s:</b> %s%s%s<br/>", |
| 9954 | 620 _("Status"), jabber_buddy_state_get_name(jbr->state), |
| 7014 | 621 purdy ? ": " : "", |
| 622 purdy ? purdy : ""); | |
| 7145 | 623 if(purdy) |
| 624 g_free(purdy); | |
| 7014 | 625 } else { |
| 8213 | 626 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 627 _("Status"), _("Unknown")); |
| 628 } | |
| 629 } else { | |
| 630 for(resources = jb->resources; resources; resources = resources->next) { | |
| 7145 | 631 char *purdy = NULL; |
| 7014 | 632 jbr = resources->data; |
| 7145 | 633 if(jbr->status) |
| 634 purdy = gaim_strdup_withhtml(jbr->status); | |
| 8213 | 635 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 636 _("Resource"), jbr->name); |
| 8213 | 637 g_string_append_printf(info_text, "<b>%s:</b> %s%s%s<br/><br/>", |
| 9954 | 638 _("Status"), jabber_buddy_state_get_name(jbr->state), |
| 7014 | 639 purdy ? ": " : "", |
| 640 purdy ? purdy : ""); | |
| 7145 | 641 if(purdy) |
| 642 g_free(purdy); | |
| 7014 | 643 } |
| 644 } | |
| 645 | |
| 7306 | 646 g_free(resource_name); |
| 647 | |
| 10189 | 648 if((vcard = xmlnode_get_child(packet, "vCard")) || |
| 649 (vcard = xmlnode_get_child_with_namespace(packet, "query", "vcard-temp"))) { | |
| 7014 | 650 xmlnode *child; |
| 651 for(child = vcard->child; child; child = child->next) | |
| 652 { | |
| 653 xmlnode *child2; | |
| 654 | |
| 8135 | 655 if(child->type != XMLNODE_TYPE_TAG) |
| 7014 | 656 continue; |
| 657 | |
| 658 text = xmlnode_get_data(child); | |
| 659 if(text && !strcmp(child->name, "FN")) { | |
| 8213 | 660 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 661 _("Full Name"), text); |
| 662 } else if(!strcmp(child->name, "N")) { | |
| 663 for(child2 = child->child; child2; child2 = child2->next) | |
| 664 { | |
| 665 char *text2; | |
| 666 | |
| 8135 | 667 if(child2->type != XMLNODE_TYPE_TAG) |
| 7014 | 668 continue; |
| 669 | |
| 670 text2 = xmlnode_get_data(child2); | |
| 671 if(text2 && !strcmp(child2->name, "FAMILY")) { | |
| 672 g_string_append_printf(info_text, | |
| 8213 | 673 "<b>%s:</b> %s<br/>", |
| 7014 | 674 _("Family Name"), text2); |
| 675 } else if(text2 && !strcmp(child2->name, "GIVEN")) { | |
| 676 g_string_append_printf(info_text, | |
| 8213 | 677 "<b>%s:</b> %s<br/>", |
| 7014 | 678 _("Given Name"), text2); |
| 679 } else if(text2 && !strcmp(child2->name, "MIDDLE")) { | |
| 680 g_string_append_printf(info_text, | |
| 8213 | 681 "<b>%s:</b> %s<br/>", |
| 7014 | 682 _("Middle Name"), text2); |
| 683 } | |
| 684 g_free(text2); | |
| 685 } | |
| 686 } else if(text && !strcmp(child->name, "NICKNAME")) { | |
| 687 serv_got_alias(js->gc, from, text); | |
| 7955 | 688 if(b) { |
| 689 gaim_blist_node_set_string((GaimBlistNode*)b, "servernick", text); | |
| 690 } | |
| 8213 | 691 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 692 _("Nickname"), text); |
| 693 } else if(text && !strcmp(child->name, "BDAY")) { | |
| 8213 | 694 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 695 _("Birthday"), text); |
| 696 } else if(!strcmp(child->name, "ADR")) { | |
| 697 /* show which address it is */ | |
| 698 if(child->child) | |
| 8213 | 699 g_string_append_printf(info_text, "<b>%s:</b><br/>", |
| 7014 | 700 _("Address")); |
| 701 for(child2 = child->child; child2; child2 = child2->next) | |
| 702 { | |
| 703 char *text2; | |
| 704 | |
| 8135 | 705 if(child2->type != XMLNODE_TYPE_TAG) |
| 7014 | 706 continue; |
| 707 | |
| 708 text2 = xmlnode_get_data(child2); | |
| 709 if(text2 && !strcmp(child2->name, "POBOX")) { | |
| 710 g_string_append_printf(info_text, | |
| 8213 | 711 " <b>%s:</b> %s<br/>", |
| 7014 | 712 _("P.O. Box"), text2); |
| 713 } else if(text2 && !strcmp(child2->name, "EXTADR")) { | |
| 714 g_string_append_printf(info_text, | |
| 8213 | 715 " <b>%s:</b> %s<br/>", |
| 7014 | 716 _("Extended Address"), text2); |
| 717 } else if(text2 && !strcmp(child2->name, "STREET")) { | |
| 718 g_string_append_printf(info_text, | |
| 8213 | 719 " <b>%s:</b> %s<br/>", |
| 7014 | 720 _("Street Address"), text2); |
| 721 } else if(text2 && !strcmp(child2->name, "LOCALITY")) { | |
| 722 g_string_append_printf(info_text, | |
| 8213 | 723 " <b>%s:</b> %s<br/>", |
| 7014 | 724 _("Locality"), text2); |
| 725 } else if(text2 && !strcmp(child2->name, "REGION")) { | |
| 726 g_string_append_printf(info_text, | |
| 8213 | 727 " <b>%s:</b> %s<br/>", |
| 7014 | 728 _("Region"), text2); |
| 729 } else if(text2 && !strcmp(child2->name, "PCODE")) { | |
| 730 g_string_append_printf(info_text, | |
| 8213 | 731 " <b>%s:</b> %s<br/>", |
| 7014 | 732 _("Postal Code"), text2); |
| 733 } else if(text2 && (!strcmp(child2->name, "CTRY") | |
| 734 || !strcmp(child2->name, "COUNTRY"))) { | |
| 735 g_string_append_printf(info_text, | |
| 8213 | 736 " <b>%s:</b> %s<br/>", |
| 7014 | 737 _("Country"), text2); |
| 738 } | |
| 739 g_free(text2); | |
| 740 } | |
| 741 } else if(!strcmp(child->name, "TEL")) { | |
| 742 char *number; | |
| 743 if((child2 = xmlnode_get_child(child, "NUMBER"))) { | |
| 744 /* show what kind of number it is */ | |
| 745 number = xmlnode_get_data(child2); | |
| 746 if(number) { | |
| 747 g_string_append_printf(info_text, | |
| 8213 | 748 "<b>%s:</b> %s<br/>", _("Telephone"), number); |
| 7014 | 749 g_free(number); |
| 750 } | |
| 751 } else if((number = xmlnode_get_data(child))) { | |
| 752 /* lots of clients (including gaim) do this, but it's | |
| 753 * out of spec */ | |
| 754 g_string_append_printf(info_text, | |
| 8213 | 755 "<b>%s:</b> %s<br/>", _("Telephone"), number); |
| 7014 | 756 g_free(number); |
| 757 } | |
| 758 } else if(!strcmp(child->name, "EMAIL")) { | |
| 759 char *userid; | |
| 760 if((child2 = xmlnode_get_child(child, "USERID"))) { | |
| 761 /* show what kind of email it is */ | |
| 762 userid = xmlnode_get_data(child2); | |
| 763 if(userid) { | |
| 764 g_string_append_printf(info_text, | |
| 8213 | 765 "<b>%s:</b> <a href='mailto:%s'>%s</a><br/>", |
| 7014 | 766 _("Email"), userid, userid); |
| 767 g_free(userid); | |
| 768 } | |
| 769 } else if((userid = xmlnode_get_data(child))) { | |
| 770 /* lots of clients (including gaim) do this, but it's | |
| 771 * out of spec */ | |
| 772 g_string_append_printf(info_text, | |
| 8213 | 773 "<b>%s:</b> <a href='mailto:%s'>%s</a><br/>", |
| 7014 | 774 _("Email"), userid, userid); |
| 775 g_free(userid); | |
| 776 } | |
| 777 } else if(!strcmp(child->name, "ORG")) { | |
| 778 for(child2 = child->child; child2; child2 = child2->next) | |
| 779 { | |
| 780 char *text2; | |
| 781 | |
| 8135 | 782 if(child2->type != XMLNODE_TYPE_TAG) |
| 7014 | 783 continue; |
| 784 | |
| 785 text2 = xmlnode_get_data(child2); | |
| 786 if(text2 && !strcmp(child2->name, "ORGNAME")) { | |
| 787 g_string_append_printf(info_text, | |
| 8213 | 788 "<b>%s:</b> %s<br/>", |
| 7014 | 789 _("Organization Name"), text2); |
| 790 } else if(text2 && !strcmp(child2->name, "ORGUNIT")) { | |
| 791 g_string_append_printf(info_text, | |
| 8213 | 792 "<b>%s:</b> %s<br/>", |
| 7014 | 793 _("Organization Unit"), text2); |
| 794 } | |
| 795 g_free(text2); | |
| 796 } | |
| 797 } else if(text && !strcmp(child->name, "TITLE")) { | |
| 8213 | 798 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 799 _("Title"), text); |
| 800 } else if(text && !strcmp(child->name, "ROLE")) { | |
| 8213 | 801 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 802 _("Role"), text); |
| 803 } else if(text && !strcmp(child->name, "DESC")) { | |
| 8213 | 804 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 805 _("Description"), text); | |
| 7076 | 806 } else if(!strcmp(child->name, "PHOTO") || |
| 807 !strcmp(child->name, "LOGO")) { | |
| 10941 | 808 char *bintext = NULL; |
| 809 xmlnode *binval; | |
| 810 if((binval = xmlnode_get_child(child, "BINVAL")) && | |
| 811 (bintext = xmlnode_get_data(binval))) { | |
| 11127 | 812 gsize size; |
| 11137 | 813 guchar *data; |
| 11127 | 814 int i; |
| 10941 | 815 unsigned char hashval[20]; |
| 11127 | 816 char *p, hash[41]; |
| 10941 | 817 gboolean photo = (strcmp(child->name, "PHOTO") == 0); |
| 10189 | 818 |
| 11127 | 819 data = gaim_base64_decode(text, &size); |
| 7076 | 820 |
| 10941 | 821 imgids = g_slist_prepend(imgids, GINT_TO_POINTER(gaim_imgstore_add(data, size, "logo.png"))); |
| 822 g_string_append_printf(info_text, | |
| 823 "<b>%s:</b> <img id='%d'><br/>", | |
| 824 photo ? _("Photo") : _("Logo"), | |
| 825 GPOINTER_TO_INT(imgids->data)); | |
| 7076 | 826 |
| 10941 | 827 gaim_buddy_icons_set_for_user(js->gc->account, bare_jid, |
| 828 data, size); | |
| 10189 | 829 |
| 11183 | 830 gaim_cipher_digest_region("sha1", (guchar *)data, size, |
| 10941 | 831 sizeof(hashval), hashval, NULL); |
| 832 p = hash; | |
| 833 for(i=0; i<20; i++, p+=2) | |
| 834 snprintf(p, 3, "%02x", hashval[i]); | |
| 835 gaim_blist_node_set_string((GaimBlistNode*)b, "avatar_hash", hash); | |
| 10189 | 836 |
| 10941 | 837 g_free(data); |
| 838 g_free(bintext); | |
| 839 } | |
| 7014 | 840 } |
| 841 g_free(text); | |
| 842 } | |
| 843 } | |
| 844 | |
| 845 title = g_strdup_printf("User info for %s", from); | |
| 846 | |
| 8213 | 847 text = gaim_strdup_withhtml(info_text->str); |
| 848 | |
| 9797 | 849 gaim_notify_userinfo(js->gc, from, title, _("Jabber Profile"), |
| 8213 | 850 NULL, text, NULL, NULL); |
| 7014 | 851 |
| 10189 | 852 while(imgids) { |
| 853 gaim_imgstore_unref(GPOINTER_TO_INT(imgids->data)); | |
| 854 imgids = g_slist_delete_link(imgids, imgids); | |
| 855 } | |
| 7014 | 856 g_free(title); |
| 857 g_string_free(info_text, TRUE); | |
| 8213 | 858 g_free(text); |
| 10189 | 859 g_free(bare_jid); |
| 7014 | 860 } |
| 861 | |
| 10189 | 862 static void jabber_buddy_get_info_for_jid(JabberStream *js, const char *full_jid) |
| 7014 | 863 { |
| 864 JabberIq *iq; | |
| 865 xmlnode *vcard; | |
| 866 | |
| 867 iq = jabber_iq_new(js, JABBER_IQ_GET); | |
| 868 | |
| 10189 | 869 xmlnode_set_attrib(iq->node, "to", full_jid); |
| 7014 | 870 vcard = xmlnode_new_child(iq->node, "vCard"); |
| 871 xmlnode_set_attrib(vcard, "xmlns", "vcard-temp"); | |
| 872 | |
| 7395 | 873 jabber_iq_set_callback(iq, jabber_vcard_parse, NULL); |
| 7014 | 874 |
| 875 jabber_iq_send(iq); | |
| 876 } | |
| 877 | |
| 10189 | 878 void jabber_buddy_get_info(GaimConnection *gc, const char *who) |
| 879 { | |
| 880 JabberStream *js = gc->proto_data; | |
| 881 char *bare_jid = jabber_get_bare_jid(who); | |
| 882 | |
| 883 if(bare_jid) { | |
| 884 jabber_buddy_get_info_for_jid(js, bare_jid); | |
| 885 g_free(bare_jid); | |
| 886 } | |
| 887 } | |
| 888 | |
| 7014 | 889 void jabber_buddy_get_info_chat(GaimConnection *gc, int id, |
| 890 const char *resource) | |
| 891 { | |
| 892 JabberStream *js = gc->proto_data; | |
| 893 JabberChat *chat = jabber_chat_find_by_id(js, id); | |
| 894 char *full_jid; | |
| 895 | |
| 896 if(!chat) | |
| 897 return; | |
| 898 | |
| 899 full_jid = g_strdup_printf("%s@%s/%s", chat->room, chat->server, resource); | |
| 10189 | 900 jabber_buddy_get_info_for_jid(js, full_jid); |
| 7014 | 901 g_free(full_jid); |
| 902 } | |
| 903 | |
| 7395 | 904 |
| 7014 | 905 static void jabber_buddy_set_invisibility(JabberStream *js, const char *who, |
| 906 gboolean invisible) | |
| 907 { | |
| 9944 | 908 GaimPresence *gpresence; |
| 909 GaimAccount *account; | |
| 910 GaimStatus *status; | |
| 7014 | 911 JabberBuddy *jb = jabber_buddy_find(js, who, TRUE); |
| 912 xmlnode *presence; | |
| 9954 | 913 JabberBuddyState state; |
| 914 const char *msg; | |
| 915 int priority; | |
| 7014 | 916 |
| 9944 | 917 account = gaim_connection_get_account(js->gc); |
| 918 gpresence = gaim_account_get_presence(account); | |
| 919 status = gaim_presence_get_active_status(gpresence); | |
| 920 | |
| 9954 | 921 gaim_status_to_jabber(status, &state, &msg, &priority); |
| 922 presence = jabber_presence_create(state, msg, priority); | |
| 923 | |
| 7014 | 924 xmlnode_set_attrib(presence, "to", who); |
| 925 if(invisible) { | |
| 926 xmlnode_set_attrib(presence, "type", "invisible"); | |
| 927 jb->invisible |= JABBER_INVIS_BUDDY; | |
| 928 } else { | |
| 929 jb->invisible &= ~JABBER_INVIS_BUDDY; | |
| 930 } | |
| 931 | |
| 932 jabber_send(js, presence); | |
| 933 xmlnode_free(presence); | |
| 934 } | |
| 935 | |
| 9030 | 936 static void jabber_buddy_make_invisible(GaimBlistNode *node, gpointer data) |
| 7014 | 937 { |
| 9030 | 938 GaimBuddy *buddy; |
| 939 GaimConnection *gc; | |
| 940 JabberStream *js; | |
| 941 | |
| 942 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
| 943 | |
| 944 buddy = (GaimBuddy *) node; | |
| 945 gc = gaim_account_get_connection(buddy->account); | |
| 946 js = gc->proto_data; | |
| 947 | |
| 948 jabber_buddy_set_invisibility(js, buddy->name, TRUE); | |
| 7014 | 949 } |
| 950 | |
| 9030 | 951 static void jabber_buddy_make_visible(GaimBlistNode *node, gpointer data) |
| 7014 | 952 { |
| 9030 | 953 GaimBuddy *buddy; |
| 954 GaimConnection *gc; | |
| 955 JabberStream *js; | |
| 7014 | 956 |
| 9030 | 957 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); |
| 7014 | 958 |
| 9030 | 959 buddy = (GaimBuddy *) node; |
| 960 gc = gaim_account_get_connection(buddy->account); | |
| 961 js = gc->proto_data; | |
| 962 | |
| 963 jabber_buddy_set_invisibility(js, buddy->name, FALSE); | |
| 7014 | 964 } |
| 965 | |
| 9030 | 966 static void jabber_buddy_cancel_presence_notification(GaimBlistNode *node, |
| 967 gpointer data) | |
| 7014 | 968 { |
| 9030 | 969 GaimBuddy *buddy; |
| 970 GaimConnection *gc; | |
| 971 JabberStream *js; | |
| 972 | |
| 973 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
| 7014 | 974 |
| 9030 | 975 buddy = (GaimBuddy *) node; |
| 976 gc = gaim_account_get_connection(buddy->account); | |
| 977 js = gc->proto_data; | |
| 978 | |
| 979 /* I wonder if we should prompt the user before doing this */ | |
| 980 jabber_presence_subscription_set(js, buddy->name, "unsubscribed"); | |
| 7014 | 981 } |
| 982 | |
| 9030 | 983 static void jabber_buddy_rerequest_auth(GaimBlistNode *node, gpointer data) |
| 7250 | 984 { |
| 9030 | 985 GaimBuddy *buddy; |
| 986 GaimConnection *gc; | |
| 987 JabberStream *js; | |
| 988 | |
| 989 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
| 7250 | 990 |
| 9030 | 991 buddy = (GaimBuddy *) node; |
| 992 gc = gaim_account_get_connection(buddy->account); | |
| 993 js = gc->proto_data; | |
| 994 | |
| 995 jabber_presence_subscription_set(js, buddy->name, "subscribe"); | |
| 7250 | 996 } |
| 997 | |
| 9030 | 998 |
| 999 static void jabber_buddy_unsubscribe(GaimBlistNode *node, gpointer data) | |
| 7014 | 1000 { |
| 9030 | 1001 GaimBuddy *buddy; |
| 1002 GaimConnection *gc; | |
| 1003 JabberStream *js; | |
| 1004 | |
| 1005 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
| 1006 | |
| 1007 buddy = (GaimBuddy *) node; | |
| 1008 gc = gaim_account_get_connection(buddy->account); | |
| 1009 js = gc->proto_data; | |
| 1010 | |
| 1011 jabber_presence_subscription_set(js, buddy->name, "unsubscribe"); | |
| 1012 } | |
| 1013 | |
| 1014 | |
| 1015 GList *jabber_buddy_menu(GaimBuddy *buddy) | |
| 1016 { | |
| 1017 GaimConnection *gc = gaim_account_get_connection(buddy->account); | |
| 1018 JabberStream *js = gc->proto_data; | |
| 1019 JabberBuddy *jb = jabber_buddy_find(js, buddy->name, TRUE); | |
| 1020 | |
| 7014 | 1021 GList *m = NULL; |
| 9030 | 1022 GaimBlistNodeAction *act; |
| 7395 | 1023 |
| 1024 if(!jb) | |
| 1025 return m; | |
| 1026 | |
| 8185 | 1027 /* XXX: fix the NOT ME below */ |
| 1028 | |
| 1029 if(js->protocol_version == JABBER_PROTO_0_9 /* && NOT ME */) { | |
| 8166 | 1030 if(jb->invisible & JABBER_INVIS_BUDDY) { |
| 9030 | 1031 act = gaim_blist_node_action_new(_("Un-hide From"), |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10504
diff
changeset
|
1032 jabber_buddy_make_visible, NULL, NULL); |
| 8166 | 1033 } else { |
| 9030 | 1034 act = gaim_blist_node_action_new(_("Temporarily Hide From"), |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10504
diff
changeset
|
1035 jabber_buddy_make_invisible, NULL, NULL); |
| 8166 | 1036 } |
| 9030 | 1037 m = g_list_append(m, act); |
| 7014 | 1038 } |
| 1039 | |
| 8185 | 1040 if(jb->subscription & JABBER_SUB_FROM /* && NOT ME */) { |
| 9030 | 1041 act = gaim_blist_node_action_new(_("Cancel Presence Notification"), |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10504
diff
changeset
|
1042 jabber_buddy_cancel_presence_notification, NULL, NULL); |
| 9030 | 1043 m = g_list_append(m, act); |
| 7014 | 1044 } |
| 1045 | |
| 1046 if(!(jb->subscription & JABBER_SUB_TO)) { | |
| 9030 | 1047 act = gaim_blist_node_action_new(_("(Re-)Request authorization"), |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10504
diff
changeset
|
1048 jabber_buddy_rerequest_auth, NULL, NULL); |
| 9030 | 1049 m = g_list_append(m, act); |
| 1050 | |
| 8185 | 1051 } else /* if(NOT ME) */{ |
| 9030 | 1052 |
| 1053 /* shouldn't this just happen automatically when the buddy is | |
| 1054 removed? */ | |
| 1055 act = gaim_blist_node_action_new(_("Unsubscribe"), | |
|
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10504
diff
changeset
|
1056 jabber_buddy_unsubscribe, NULL, NULL); |
| 9030 | 1057 m = g_list_append(m, act); |
| 7014 | 1058 } |
| 1059 | |
| 1060 return m; | |
| 1061 } | |
| 9030 | 1062 |
| 1063 GList * | |
| 1064 jabber_blist_node_menu(GaimBlistNode *node) | |
| 1065 { | |
| 1066 if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
| 1067 return jabber_buddy_menu((GaimBuddy *) node); | |
| 1068 } else { | |
| 1069 return NULL; | |
| 1070 } | |
| 1071 } | |
| 1072 | |
| 1073 | |
| 9954 | 1074 const char * |
| 1075 jabber_buddy_state_get_name(JabberBuddyState state) | |
| 1076 { | |
| 1077 switch(state) { | |
| 1078 case JABBER_BUDDY_STATE_UNKNOWN: | |
| 1079 return _("Unknown"); | |
| 1080 case JABBER_BUDDY_STATE_ERROR: | |
| 1081 return _("Error"); | |
| 1082 case JABBER_BUDDY_STATE_UNAVAILABLE: | |
| 1083 return _("Offline"); | |
| 1084 case JABBER_BUDDY_STATE_ONLINE: | |
| 1085 return _("Online"); | |
| 1086 case JABBER_BUDDY_STATE_CHAT: | |
| 1087 return _("Chatty"); | |
| 1088 case JABBER_BUDDY_STATE_AWAY: | |
| 1089 return _("Away"); | |
| 1090 case JABBER_BUDDY_STATE_XA: | |
| 1091 return _("Extended Away"); | |
| 1092 case JABBER_BUDDY_STATE_DND: | |
| 1093 return _("Do Not Disturb"); | |
| 1094 } | |
| 1095 | |
| 1096 return _("Unknown"); | |
| 1097 } | |
| 1098 | |
| 1099 JabberBuddyState jabber_buddy_status_id_get_state(const char *id) { | |
| 1100 if(!id) | |
| 1101 return JABBER_BUDDY_STATE_UNKNOWN; | |
| 1102 if(!strcmp(id, "online")) | |
| 1103 return JABBER_BUDDY_STATE_ONLINE; | |
| 1104 if(!strcmp(id, "chat")) | |
| 1105 return JABBER_BUDDY_STATE_CHAT; | |
| 1106 if(!strcmp(id, "away")) | |
| 1107 return JABBER_BUDDY_STATE_AWAY; | |
| 1108 if(!strcmp(id, "xa")) | |
| 1109 return JABBER_BUDDY_STATE_XA; | |
| 1110 if(!strcmp(id, "dnd")) | |
| 1111 return JABBER_BUDDY_STATE_DND; | |
| 1112 if(!strcmp(id, "offline")) | |
| 1113 return JABBER_BUDDY_STATE_UNAVAILABLE; | |
| 1114 if(!strcmp(id, "error")) | |
| 1115 return JABBER_BUDDY_STATE_ERROR; | |
| 1116 | |
| 1117 return JABBER_BUDDY_STATE_UNKNOWN; | |
| 1118 } | |
| 1119 | |
| 1120 const char *jabber_buddy_state_get_status_id(JabberBuddyState state) { | |
| 1121 switch(state) { | |
| 1122 case JABBER_BUDDY_STATE_CHAT: | |
| 1123 return "chat"; | |
| 1124 case JABBER_BUDDY_STATE_AWAY: | |
| 1125 return "away"; | |
| 1126 case JABBER_BUDDY_STATE_XA: | |
| 1127 return "xa"; | |
| 1128 case JABBER_BUDDY_STATE_DND: | |
| 1129 return "dnd"; | |
| 1130 case JABBER_BUDDY_STATE_ONLINE: | |
| 1131 return "online"; | |
| 1132 case JABBER_BUDDY_STATE_UNKNOWN: | |
| 1133 case JABBER_BUDDY_STATE_ERROR: | |
| 1134 return NULL; | |
| 1135 case JABBER_BUDDY_STATE_UNAVAILABLE: | |
| 1136 return "offline"; | |
| 1137 } | |
| 1138 return NULL; | |
| 1139 } |
