Sat, 12 Mar 2005 01:10:37 +0000
[gaim-migrate @ 12235]
grim says this is really fixed this time.
| 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
0325b164a7eb
[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
bb37562302a1
[gaim-migrate @ 10574]
Mark Doliner <markdoliner@pidgin.im>
parents:
9466
diff
changeset
|
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
01248ea222d3
[gaim-migrate @ 9490]
Jonathan Champ <royanee@users.sourceforge.net>
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
9a5901c7bceb
[gaim-migrate @ 11702]
Mark Doliner <markdoliner@pidgin.im>
parents:
10441
diff
changeset
|
386 | if(avatar_file && g_file_get_contents(avatar_file, (gchar **)&avatar_data, &avatar_len, &error)) { |
| 10189 | 387 | xmlnode *photo; |
| 10441 | 388 | unsigned char *enc; |
| 10189 | 389 | int i; |
| 390 | unsigned char hashval[20]; | |
| 391 | char *p, hash[41]; | |
| 392 | ||
| 393 | photo = xmlnode_new_child(vc_node, "PHOTO"); | |
| 394 | enc = gaim_base64_encode(avatar_data, avatar_len); | |
|
10684
0325b164a7eb
[gaim-migrate @ 12231]
Luke Schierer <lschiere@pidgin.im>
parents:
10662
diff
changeset
|
395 | |
|
0325b164a7eb
[gaim-migrate @ 12231]
Luke Schierer <lschiere@pidgin.im>
parents:
10662
diff
changeset
|
396 | gaim_cipher_digest_region("sha1", (guint8 *)avatar_data, |
| 10687 | 397 | avatar_len, sizeof(hashval), |
| 398 | hashval, NULL); | |
|
10684
0325b164a7eb
[gaim-migrate @ 12231]
Luke Schierer <lschiere@pidgin.im>
parents:
10662
diff
changeset
|
399 | |
| 10189 | 400 | p = hash; |
| 401 | for(i=0; i<20; i++, p+=2) | |
| 402 | snprintf(p, 3, "%02x", hashval[i]); | |
| 403 | js->avatar_hash = g_strdup(hash); | |
| 404 | ||
| 405 | xmlnode_insert_data(photo, enc, -1); | |
| 406 | g_free(enc); | |
| 407 | g_free(avatar_data); | |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10490
diff
changeset
|
408 | } else if (error != NULL) { |
| 10189 | 409 | g_error_free(error); |
| 410 | } | |
| 411 | ||
| 7014 | 412 | iq = jabber_iq_new(js, JABBER_IQ_SET); |
| 413 | xmlnode_insert_child(iq->node, vc_node); | |
| 414 | jabber_iq_send(iq); | |
| 415 | } else { | |
| 416 | xmlnode_free(vc_node); | |
| 417 | } | |
| 418 | } | |
| 419 | } | |
| 420 | ||
| 10189 | 421 | void jabber_set_buddy_icon(GaimConnection *gc, const char *iconfile) |
| 422 | { | |
| 423 | GaimPresence *gpresence; | |
| 424 | GaimStatus *status; | |
| 425 | ||
| 426 | jabber_set_info(gc, gaim_account_get_user_info(gc->account)); | |
| 427 | ||
| 428 | gpresence = gaim_account_get_presence(gc->account); | |
| 429 | status = gaim_presence_get_active_status(gpresence); | |
| 10216 | 430 | jabber_presence_send(gc->account, status); |
| 10189 | 431 | } |
| 432 | ||
| 7014 | 433 | /* |
| 434 | * This is the callback from the "ok clicked" for "set vCard" | |
| 435 | * | |
| 436 | * Formats GSList data into XML-encoded string and returns a pointer | |
| 437 | * to said string. | |
| 438 | * | |
| 439 | * g_free()'ing the returned string space is the responsibility of | |
| 440 | * the caller. | |
| 441 | */ | |
| 442 | static void | |
| 443 | jabber_format_info(GaimConnection *gc, GaimRequestFields *fields) | |
| 444 | { | |
| 445 | GaimAccount *account; | |
| 446 | xmlnode *vc_node; | |
| 447 | GaimRequestField *field; | |
| 448 | const char *text; | |
| 449 | char *p; | |
| 450 | const struct vcard_template *vc_tp; | |
| 451 | struct tag_attr *tag_attr; | |
| 452 | ||
| 453 | vc_node = xmlnode_new("vCard"); | |
| 454 | ||
| 455 | for(tag_attr = vcard_tag_attr_list; tag_attr->attr != NULL; ++tag_attr) | |
| 456 | xmlnode_set_attrib(vc_node, tag_attr->attr, tag_attr->value); | |
| 457 | ||
| 458 | for (vc_tp = vcard_template_data; vc_tp->label != NULL; vc_tp++) { | |
| 459 | if (*vc_tp->label == '\0') | |
| 460 | continue; | |
| 461 | ||
| 462 | field = gaim_request_fields_get_field(fields, vc_tp->tag); | |
| 463 | text = gaim_request_field_string_get_value(field); | |
| 464 | ||
| 465 | ||
| 466 | if (text != NULL && *text != '\0') { | |
| 467 | xmlnode *xp; | |
| 468 | ||
| 9339 | 469 | gaim_debug(GAIM_DEBUG_INFO, "jabber", |
| 470 | "Setting %s to '%s'\n", vc_tp->tag, text); | |
| 471 | ||
| 7014 | 472 | if ((xp = insert_tag_to_parent_tag(vc_node, |
| 473 | NULL, vc_tp->tag)) != NULL) { | |
| 474 | ||
| 475 | xmlnode_insert_data(xp, text, -1); | |
| 476 | } | |
| 477 | } | |
| 478 | } | |
| 479 | ||
| 7642 | 480 | p = xmlnode_to_str(vc_node, NULL); |
| 7014 | 481 | xmlnode_free(vc_node); |
| 482 | ||
| 483 | account = gaim_connection_get_account(gc); | |
| 484 | ||
| 485 | if (account != NULL) { | |
| 486 | gaim_account_set_user_info(account, p); | |
| 487 | ||
| 488 | if (gc != NULL) | |
| 489 | serv_set_info(gc, p); | |
| 490 | } | |
| 491 | ||
| 492 | g_free(p); | |
| 493 | } | |
| 494 | ||
| 495 | /* | |
| 496 | * This gets executed by the proto action | |
| 497 | * | |
| 498 | * Creates a new GaimRequestFields struct, gets the XML-formatted user_info | |
| 499 | * string (if any) into GSLists for the (multi-entry) edit dialog and | |
| 500 | * calls the set_vcard dialog. | |
| 501 | */ | |
|
9015
3c27e9074fa2
[gaim-migrate @ 9791]
Christopher O'Brien <siege@pidgin.im>
parents:
8735
diff
changeset
|
502 | void jabber_setup_set_info(GaimPluginAction *action) |
| 7014 | 503 | { |
|
9015
3c27e9074fa2
[gaim-migrate @ 9791]
Christopher O'Brien <siege@pidgin.im>
parents:
8735
diff
changeset
|
504 | GaimConnection *gc = (GaimConnection *) action->context; |
| 7014 | 505 | GaimRequestFields *fields; |
| 506 | GaimRequestFieldGroup *group; | |
| 507 | GaimRequestField *field; | |
| 508 | const struct vcard_template *vc_tp; | |
| 509 | char *user_info; | |
| 510 | char *cdata; | |
| 511 | xmlnode *x_vc_data = NULL; | |
| 512 | ||
| 513 | fields = gaim_request_fields_new(); | |
| 514 | group = gaim_request_field_group_new(NULL); | |
| 515 | gaim_request_fields_add_group(fields, group); | |
| 516 | ||
| 517 | /* | |
| 518 | * Get existing, XML-formatted, user info | |
| 519 | */ | |
| 520 | if((user_info = g_strdup(gaim_account_get_user_info(gc->account))) != NULL) | |
| 521 | x_vc_data = xmlnode_from_str(user_info, -1); | |
| 522 | else | |
| 523 | user_info = g_strdup(""); | |
| 524 | ||
| 525 | /* | |
| 526 | * Set up GSLists for edit with labels from "template," data from user info | |
| 527 | */ | |
| 528 | for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
| 529 | xmlnode *data_node; | |
| 530 | if((vc_tp->label)[0] == '\0') | |
| 531 | continue; | |
| 532 | if(vc_tp->ptag == NULL) { | |
| 533 | data_node = xmlnode_get_child(x_vc_data, vc_tp->tag); | |
| 534 | } else { | |
| 535 | gchar *tag = g_strdup_printf("%s/%s", vc_tp->ptag, vc_tp->tag); | |
| 536 | data_node = xmlnode_get_child(x_vc_data, tag); | |
| 537 | g_free(tag); | |
| 538 | } | |
| 539 | if(data_node) | |
| 540 | cdata = xmlnode_get_data(data_node); | |
| 541 | else | |
| 542 | cdata = NULL; | |
| 543 | ||
| 544 | if(strcmp(vc_tp->tag, "DESC") == 0) { | |
| 545 | field = gaim_request_field_string_new(vc_tp->tag, | |
| 546 | _(vc_tp->label), cdata, | |
| 547 | TRUE); | |
| 548 | } else { | |
| 549 | field = gaim_request_field_string_new(vc_tp->tag, | |
| 550 | _(vc_tp->label), cdata, | |
| 551 | FALSE); | |
| 552 | } | |
| 553 | ||
| 554 | gaim_request_field_group_add_field(group, field); | |
| 555 | } | |
| 556 | ||
| 557 | if(x_vc_data != NULL) | |
| 558 | xmlnode_free(x_vc_data); | |
| 559 | ||
| 560 | g_free(user_info); | |
| 561 | ||
| 562 | gaim_request_fields(gc, _("Edit Jabber vCard"), | |
| 563 | _("Edit Jabber vCard"), | |
| 564 | _("All items below are optional. Enter only the " | |
| 565 | "information with which you feel comfortable."), | |
| 566 | fields, | |
| 567 | _("Save"), G_CALLBACK(jabber_format_info), | |
| 568 | _("Cancel"), NULL, | |
| 569 | gc); | |
| 570 | } | |
| 571 | ||
| 572 | /*---------------------------------------*/ | |
| 573 | /* End Jabber "set info" (vCard) support */ | |
| 574 | /*---------------------------------------*/ | |
| 575 | ||
| 576 | /****** | |
| 577 | * end of that ancient crap that needs to die | |
| 578 | ******/ | |
| 579 | ||
| 580 | ||
| 7395 | 581 | static void jabber_vcard_parse(JabberStream *js, xmlnode *packet, gpointer data) |
| 7014 | 582 | { |
| 583 | GList *resources; | |
| 584 | const char *from = xmlnode_get_attrib(packet, "from"); | |
| 585 | JabberBuddy *jb; | |
| 586 | JabberBuddyResource *jbr; | |
| 587 | GString *info_text; | |
| 7306 | 588 | char *resource_name; |
| 7955 | 589 | char *bare_jid; |
| 7014 | 590 | char *title; |
| 8213 | 591 | char *text; |
| 7014 | 592 | xmlnode *vcard; |
| 7955 | 593 | GaimBuddy *b; |
| 10189 | 594 | GSList *imgids = NULL; |
| 7014 | 595 | |
| 596 | if(!from) | |
| 597 | return; | |
| 598 | ||
| 10490 | 599 | /* XXX: handle the error case */ |
| 600 | ||
| 7014 | 601 | resource_name = jabber_get_resource(from); |
| 7955 | 602 | bare_jid = jabber_get_bare_jid(from); |
| 603 | ||
| 604 | b = gaim_find_buddy(js->gc->account, bare_jid); | |
| 7014 | 605 | |
| 606 | jb = jabber_buddy_find(js, from, TRUE); | |
| 607 | info_text = g_string_new(""); | |
| 608 | ||
| 8213 | 609 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", _("Jabber ID"), |
| 7014 | 610 | from); |
| 611 | ||
| 612 | if(resource_name) { | |
| 613 | jbr = jabber_buddy_find_resource(jb, resource_name); | |
| 614 | if(jbr) { | |
| 7145 | 615 | char *purdy = NULL; |
| 616 | if(jbr->status) | |
| 617 | purdy = gaim_strdup_withhtml(jbr->status); | |
| 8213 | 618 | g_string_append_printf(info_text, "<b>%s:</b> %s%s%s<br/>", |
| 9954 | 619 | _("Status"), jabber_buddy_state_get_name(jbr->state), |
| 7014 | 620 | purdy ? ": " : "", |
| 621 | purdy ? purdy : ""); | |
| 7145 | 622 | if(purdy) |
| 623 | g_free(purdy); | |
| 7014 | 624 | } else { |
| 8213 | 625 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 626 | _("Status"), _("Unknown")); |
| 627 | } | |
| 628 | } else { | |
| 629 | for(resources = jb->resources; resources; resources = resources->next) { | |
| 7145 | 630 | char *purdy = NULL; |
| 7014 | 631 | jbr = resources->data; |
| 7145 | 632 | if(jbr->status) |
| 633 | purdy = gaim_strdup_withhtml(jbr->status); | |
| 8213 | 634 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 635 | _("Resource"), jbr->name); |
| 8213 | 636 | g_string_append_printf(info_text, "<b>%s:</b> %s%s%s<br/><br/>", |
| 9954 | 637 | _("Status"), jabber_buddy_state_get_name(jbr->state), |
| 7014 | 638 | purdy ? ": " : "", |
| 639 | purdy ? purdy : ""); | |
| 7145 | 640 | if(purdy) |
| 641 | g_free(purdy); | |
| 7014 | 642 | } |
| 643 | } | |
| 644 | ||
| 7306 | 645 | g_free(resource_name); |
| 646 | ||
| 10189 | 647 | if((vcard = xmlnode_get_child(packet, "vCard")) || |
| 648 | (vcard = xmlnode_get_child_with_namespace(packet, "query", "vcard-temp"))) { | |
| 7014 | 649 | xmlnode *child; |
| 650 | for(child = vcard->child; child; child = child->next) | |
| 651 | { | |
| 652 | xmlnode *child2; | |
| 653 | ||
| 8135 | 654 | if(child->type != XMLNODE_TYPE_TAG) |
| 7014 | 655 | continue; |
| 656 | ||
| 657 | text = xmlnode_get_data(child); | |
| 658 | if(text && !strcmp(child->name, "FN")) { | |
| 8213 | 659 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 660 | _("Full Name"), text); |
| 661 | } else if(!strcmp(child->name, "N")) { | |
| 662 | for(child2 = child->child; child2; child2 = child2->next) | |
| 663 | { | |
| 664 | char *text2; | |
| 665 | ||
| 8135 | 666 | if(child2->type != XMLNODE_TYPE_TAG) |
| 7014 | 667 | continue; |
| 668 | ||
| 669 | text2 = xmlnode_get_data(child2); | |
| 670 | if(text2 && !strcmp(child2->name, "FAMILY")) { | |
| 671 | g_string_append_printf(info_text, | |
| 8213 | 672 | "<b>%s:</b> %s<br/>", |
| 7014 | 673 | _("Family Name"), text2); |
| 674 | } else if(text2 && !strcmp(child2->name, "GIVEN")) { | |
| 675 | g_string_append_printf(info_text, | |
| 8213 | 676 | "<b>%s:</b> %s<br/>", |
| 7014 | 677 | _("Given Name"), text2); |
| 678 | } else if(text2 && !strcmp(child2->name, "MIDDLE")) { | |
| 679 | g_string_append_printf(info_text, | |
| 8213 | 680 | "<b>%s:</b> %s<br/>", |
| 7014 | 681 | _("Middle Name"), text2); |
| 682 | } | |
| 683 | g_free(text2); | |
| 684 | } | |
| 685 | } else if(text && !strcmp(child->name, "NICKNAME")) { | |
| 686 | serv_got_alias(js->gc, from, text); | |
| 7955 | 687 | if(b) { |
| 688 | gaim_blist_node_set_string((GaimBlistNode*)b, "servernick", text); | |
| 689 | } | |
| 8213 | 690 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 691 | _("Nickname"), text); |
| 692 | } else if(text && !strcmp(child->name, "BDAY")) { | |
| 8213 | 693 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 694 | _("Birthday"), text); |
| 695 | } else if(!strcmp(child->name, "ADR")) { | |
| 696 | /* show which address it is */ | |
| 697 | if(child->child) | |
| 8213 | 698 | g_string_append_printf(info_text, "<b>%s:</b><br/>", |
| 7014 | 699 | _("Address")); |
| 700 | for(child2 = child->child; child2; child2 = child2->next) | |
| 701 | { | |
| 702 | char *text2; | |
| 703 | ||
| 8135 | 704 | if(child2->type != XMLNODE_TYPE_TAG) |
| 7014 | 705 | continue; |
| 706 | ||
| 707 | text2 = xmlnode_get_data(child2); | |
| 708 | if(text2 && !strcmp(child2->name, "POBOX")) { | |
| 709 | g_string_append_printf(info_text, | |
| 8213 | 710 | " <b>%s:</b> %s<br/>", |
| 7014 | 711 | _("P.O. Box"), text2); |
| 712 | } else if(text2 && !strcmp(child2->name, "EXTADR")) { | |
| 713 | g_string_append_printf(info_text, | |
| 8213 | 714 | " <b>%s:</b> %s<br/>", |
| 7014 | 715 | _("Extended Address"), text2); |
| 716 | } else if(text2 && !strcmp(child2->name, "STREET")) { | |
| 717 | g_string_append_printf(info_text, | |
| 8213 | 718 | " <b>%s:</b> %s<br/>", |
| 7014 | 719 | _("Street Address"), text2); |
| 720 | } else if(text2 && !strcmp(child2->name, "LOCALITY")) { | |
| 721 | g_string_append_printf(info_text, | |
| 8213 | 722 | " <b>%s:</b> %s<br/>", |
| 7014 | 723 | _("Locality"), text2); |
| 724 | } else if(text2 && !strcmp(child2->name, "REGION")) { | |
| 725 | g_string_append_printf(info_text, | |
| 8213 | 726 | " <b>%s:</b> %s<br/>", |
| 7014 | 727 | _("Region"), text2); |
| 728 | } else if(text2 && !strcmp(child2->name, "PCODE")) { | |
| 729 | g_string_append_printf(info_text, | |
| 8213 | 730 | " <b>%s:</b> %s<br/>", |
| 7014 | 731 | _("Postal Code"), text2); |
| 732 | } else if(text2 && (!strcmp(child2->name, "CTRY") | |
| 733 | || !strcmp(child2->name, "COUNTRY"))) { | |
| 734 | g_string_append_printf(info_text, | |
| 8213 | 735 | " <b>%s:</b> %s<br/>", |
| 7014 | 736 | _("Country"), text2); |
| 737 | } | |
| 738 | g_free(text2); | |
| 739 | } | |
| 740 | } else if(!strcmp(child->name, "TEL")) { | |
| 741 | char *number; | |
| 742 | if((child2 = xmlnode_get_child(child, "NUMBER"))) { | |
| 743 | /* show what kind of number it is */ | |
| 744 | number = xmlnode_get_data(child2); | |
| 745 | if(number) { | |
| 746 | g_string_append_printf(info_text, | |
| 8213 | 747 | "<b>%s:</b> %s<br/>", _("Telephone"), number); |
| 7014 | 748 | g_free(number); |
| 749 | } | |
| 750 | } else if((number = xmlnode_get_data(child))) { | |
| 751 | /* lots of clients (including gaim) do this, but it's | |
| 752 | * out of spec */ | |
| 753 | g_string_append_printf(info_text, | |
| 8213 | 754 | "<b>%s:</b> %s<br/>", _("Telephone"), number); |
| 7014 | 755 | g_free(number); |
| 756 | } | |
| 757 | } else if(!strcmp(child->name, "EMAIL")) { | |
| 758 | char *userid; | |
| 759 | if((child2 = xmlnode_get_child(child, "USERID"))) { | |
| 760 | /* show what kind of email it is */ | |
| 761 | userid = xmlnode_get_data(child2); | |
| 762 | if(userid) { | |
| 763 | g_string_append_printf(info_text, | |
| 8213 | 764 | "<b>%s:</b> <a href='mailto:%s'>%s</a><br/>", |
| 7014 | 765 | _("Email"), userid, userid); |
| 766 | g_free(userid); | |
| 767 | } | |
| 768 | } else if((userid = xmlnode_get_data(child))) { | |
| 769 | /* lots of clients (including gaim) do this, but it's | |
| 770 | * out of spec */ | |
| 771 | g_string_append_printf(info_text, | |
| 8213 | 772 | "<b>%s:</b> <a href='mailto:%s'>%s</a><br/>", |
| 7014 | 773 | _("Email"), userid, userid); |
| 774 | g_free(userid); | |
| 775 | } | |
| 776 | } else if(!strcmp(child->name, "ORG")) { | |
| 777 | for(child2 = child->child; child2; child2 = child2->next) | |
| 778 | { | |
| 779 | char *text2; | |
| 780 | ||
| 8135 | 781 | if(child2->type != XMLNODE_TYPE_TAG) |
| 7014 | 782 | continue; |
| 783 | ||
| 784 | text2 = xmlnode_get_data(child2); | |
| 785 | if(text2 && !strcmp(child2->name, "ORGNAME")) { | |
| 786 | g_string_append_printf(info_text, | |
| 8213 | 787 | "<b>%s:</b> %s<br/>", |
| 7014 | 788 | _("Organization Name"), text2); |
| 789 | } else if(text2 && !strcmp(child2->name, "ORGUNIT")) { | |
| 790 | g_string_append_printf(info_text, | |
| 8213 | 791 | "<b>%s:</b> %s<br/>", |
| 7014 | 792 | _("Organization Unit"), text2); |
| 793 | } | |
| 794 | g_free(text2); | |
| 795 | } | |
| 796 | } else if(text && !strcmp(child->name, "TITLE")) { | |
| 8213 | 797 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 798 | _("Title"), text); |
| 799 | } else if(text && !strcmp(child->name, "ROLE")) { | |
| 8213 | 800 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 7014 | 801 | _("Role"), text); |
| 802 | } else if(text && !strcmp(child->name, "DESC")) { | |
| 8213 | 803 | g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
| 804 | _("Description"), text); | |
| 7076 | 805 | } else if(!strcmp(child->name, "PHOTO") || |
| 806 | !strcmp(child->name, "LOGO")) { | |
| 10189 | 807 | int size, i; |
| 808 | unsigned char hashval[20]; | |
| 809 | char *data, *p, hash[41]; | |
| 810 | gboolean photo = (strcmp(child->name, "PHOTO") == 0); | |
| 811 | ||
| 812 | gaim_base64_decode(text, &data, &size); | |
| 7076 | 813 | |
| 10189 | 814 | imgids = g_slist_prepend(imgids, GINT_TO_POINTER(gaim_imgstore_add(data, size, "logo.png"))); |
| 815 | g_string_append_printf(info_text, | |
| 816 | "<b>%s:</b> <img id='%d'><br/>", | |
| 817 | photo ? _("Photo") : _("Logo"), | |
| 818 | GPOINTER_TO_INT(imgids->data)); | |
| 7076 | 819 | |
| 10189 | 820 | gaim_buddy_icons_set_for_user(js->gc->account, bare_jid, |
| 821 | data, size); | |
| 822 | ||
|
10684
0325b164a7eb
[gaim-migrate @ 12231]
Luke Schierer <lschiere@pidgin.im>
parents:
10662
diff
changeset
|
823 | gaim_cipher_digest_region("sha1", (guint8 *)data, size, |
| 10687 | 824 | sizeof(hashval), hashval, NULL); |
| 10189 | 825 | p = hash; |
| 826 | for(i=0; i<20; i++, p+=2) | |
| 827 | snprintf(p, 3, "%02x", hashval[i]); | |
| 828 | gaim_blist_node_set_string((GaimBlistNode*)b, "avatar_hash", hash); | |
| 829 | ||
| 830 | g_free(data); | |
| 7014 | 831 | } |
| 832 | g_free(text); | |
| 833 | } | |
| 834 | } | |
| 835 | ||
| 836 | title = g_strdup_printf("User info for %s", from); | |
| 837 | ||
| 8213 | 838 | text = gaim_strdup_withhtml(info_text->str); |
| 839 | ||
| 9797 | 840 | gaim_notify_userinfo(js->gc, from, title, _("Jabber Profile"), |
| 8213 | 841 | NULL, text, NULL, NULL); |
| 7014 | 842 | |
| 10189 | 843 | while(imgids) { |
| 844 | gaim_imgstore_unref(GPOINTER_TO_INT(imgids->data)); | |
| 845 | imgids = g_slist_delete_link(imgids, imgids); | |
| 846 | } | |
| 7014 | 847 | g_free(title); |
| 848 | g_string_free(info_text, TRUE); | |
| 8213 | 849 | g_free(text); |
| 10189 | 850 | g_free(bare_jid); |
| 7014 | 851 | } |
| 852 | ||
| 10189 | 853 | static void jabber_buddy_get_info_for_jid(JabberStream *js, const char *full_jid) |
| 7014 | 854 | { |
| 855 | JabberIq *iq; | |
| 856 | xmlnode *vcard; | |
| 857 | ||
| 858 | iq = jabber_iq_new(js, JABBER_IQ_GET); | |
| 859 | ||
| 10189 | 860 | xmlnode_set_attrib(iq->node, "to", full_jid); |
| 7014 | 861 | vcard = xmlnode_new_child(iq->node, "vCard"); |
| 862 | xmlnode_set_attrib(vcard, "xmlns", "vcard-temp"); | |
| 863 | ||
| 7395 | 864 | jabber_iq_set_callback(iq, jabber_vcard_parse, NULL); |
| 7014 | 865 | |
| 866 | jabber_iq_send(iq); | |
| 867 | } | |
| 868 | ||
| 10189 | 869 | void jabber_buddy_get_info(GaimConnection *gc, const char *who) |
| 870 | { | |
| 871 | JabberStream *js = gc->proto_data; | |
| 872 | char *bare_jid = jabber_get_bare_jid(who); | |
| 873 | ||
| 874 | if(bare_jid) { | |
| 875 | jabber_buddy_get_info_for_jid(js, bare_jid); | |
| 876 | g_free(bare_jid); | |
| 877 | } | |
| 878 | } | |
| 879 | ||
| 7014 | 880 | void jabber_buddy_get_info_chat(GaimConnection *gc, int id, |
| 881 | const char *resource) | |
| 882 | { | |
| 883 | JabberStream *js = gc->proto_data; | |
| 884 | JabberChat *chat = jabber_chat_find_by_id(js, id); | |
| 885 | char *full_jid; | |
| 886 | ||
| 887 | if(!chat) | |
| 888 | return; | |
| 889 | ||
| 890 | full_jid = g_strdup_printf("%s@%s/%s", chat->room, chat->server, resource); | |
| 10189 | 891 | jabber_buddy_get_info_for_jid(js, full_jid); |
| 7014 | 892 | g_free(full_jid); |
| 893 | } | |
| 894 | ||
| 7395 | 895 | |
| 7014 | 896 | static void jabber_buddy_set_invisibility(JabberStream *js, const char *who, |
| 897 | gboolean invisible) | |
| 898 | { | |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9797
diff
changeset
|
899 | GaimPresence *gpresence; |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9797
diff
changeset
|
900 | GaimAccount *account; |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9797
diff
changeset
|
901 | GaimStatus *status; |
| 7014 | 902 | JabberBuddy *jb = jabber_buddy_find(js, who, TRUE); |
| 903 | xmlnode *presence; | |
| 9954 | 904 | JabberBuddyState state; |
| 905 | const char *msg; | |
| 906 | int priority; | |
| 7014 | 907 | |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9797
diff
changeset
|
908 | account = gaim_connection_get_account(js->gc); |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9797
diff
changeset
|
909 | gpresence = gaim_account_get_presence(account); |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9797
diff
changeset
|
910 | status = gaim_presence_get_active_status(gpresence); |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9797
diff
changeset
|
911 | |
| 9954 | 912 | gaim_status_to_jabber(status, &state, &msg, &priority); |
| 913 | presence = jabber_presence_create(state, msg, priority); | |
| 914 | ||
| 7014 | 915 | xmlnode_set_attrib(presence, "to", who); |
| 916 | if(invisible) { | |
| 917 | xmlnode_set_attrib(presence, "type", "invisible"); | |
| 918 | jb->invisible |= JABBER_INVIS_BUDDY; | |
| 919 | } else { | |
| 920 | jb->invisible &= ~JABBER_INVIS_BUDDY; | |
| 921 | } | |
| 922 | ||
| 923 | jabber_send(js, presence); | |
| 924 | xmlnode_free(presence); | |
| 925 | } | |
| 926 | ||
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
927 | static void jabber_buddy_make_invisible(GaimBlistNode *node, gpointer data) |
| 7014 | 928 | { |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
929 | GaimBuddy *buddy; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
930 | GaimConnection *gc; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
931 | JabberStream *js; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
932 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
933 | g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
934 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
935 | buddy = (GaimBuddy *) node; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
936 | gc = gaim_account_get_connection(buddy->account); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
937 | js = gc->proto_data; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
938 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
939 | jabber_buddy_set_invisibility(js, buddy->name, TRUE); |
| 7014 | 940 | } |
| 941 | ||
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
942 | static void jabber_buddy_make_visible(GaimBlistNode *node, gpointer data) |
| 7014 | 943 | { |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
944 | GaimBuddy *buddy; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
945 | GaimConnection *gc; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
946 | JabberStream *js; |
| 7014 | 947 | |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
948 | g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); |
| 7014 | 949 | |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
950 | buddy = (GaimBuddy *) node; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
951 | gc = gaim_account_get_connection(buddy->account); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
952 | js = gc->proto_data; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
953 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
954 | jabber_buddy_set_invisibility(js, buddy->name, FALSE); |
| 7014 | 955 | } |
| 956 | ||
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
957 | static void jabber_buddy_cancel_presence_notification(GaimBlistNode *node, |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
958 | gpointer data) |
| 7014 | 959 | { |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
960 | GaimBuddy *buddy; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
961 | GaimConnection *gc; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
962 | JabberStream *js; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
963 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
964 | g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); |
| 7014 | 965 | |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
966 | buddy = (GaimBuddy *) node; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
967 | gc = gaim_account_get_connection(buddy->account); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
968 | js = gc->proto_data; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
969 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
970 | /* I wonder if we should prompt the user before doing this */ |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
971 | jabber_presence_subscription_set(js, buddy->name, "unsubscribed"); |
| 7014 | 972 | } |
| 973 | ||
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
974 | static void jabber_buddy_rerequest_auth(GaimBlistNode *node, gpointer data) |
| 7250 | 975 | { |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
976 | GaimBuddy *buddy; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
977 | GaimConnection *gc; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
978 | JabberStream *js; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
979 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
980 | g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); |
| 7250 | 981 | |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
982 | buddy = (GaimBuddy *) node; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
983 | gc = gaim_account_get_connection(buddy->account); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
984 | js = gc->proto_data; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
985 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
986 | jabber_presence_subscription_set(js, buddy->name, "subscribe"); |
| 7250 | 987 | } |
| 988 | ||
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
989 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
990 | static void jabber_buddy_unsubscribe(GaimBlistNode *node, gpointer data) |
| 7014 | 991 | { |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
992 | GaimBuddy *buddy; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
993 | GaimConnection *gc; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
994 | JabberStream *js; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
995 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
996 | g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
997 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
998 | buddy = (GaimBuddy *) node; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
999 | gc = gaim_account_get_connection(buddy->account); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1000 | js = gc->proto_data; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1001 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1002 | jabber_presence_subscription_set(js, buddy->name, "unsubscribe"); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1003 | } |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1004 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1005 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1006 | GList *jabber_buddy_menu(GaimBuddy *buddy) |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1007 | { |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1008 | GaimConnection *gc = gaim_account_get_connection(buddy->account); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1009 | JabberStream *js = gc->proto_data; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1010 | JabberBuddy *jb = jabber_buddy_find(js, buddy->name, TRUE); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1011 | |
| 7014 | 1012 | GList *m = NULL; |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1013 | GaimBlistNodeAction *act; |
| 7395 | 1014 | |
| 1015 | if(!jb) | |
| 1016 | return m; | |
| 1017 | ||
| 8185 | 1018 | /* XXX: fix the NOT ME below */ |
| 1019 | ||
| 1020 | if(js->protocol_version == JABBER_PROTO_0_9 /* && NOT ME */) { | |
| 8166 | 1021 | if(jb->invisible & JABBER_INVIS_BUDDY) { |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1022 | act = gaim_blist_node_action_new(_("Un-hide From"), |
| 10662 | 1023 | jabber_buddy_make_visible, NULL, NULL); |
| 8166 | 1024 | } else { |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1025 | act = gaim_blist_node_action_new(_("Temporarily Hide From"), |
| 10662 | 1026 | jabber_buddy_make_invisible, NULL, NULL); |
| 8166 | 1027 | } |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1028 | m = g_list_append(m, act); |
| 7014 | 1029 | } |
| 1030 | ||
| 8185 | 1031 | if(jb->subscription & JABBER_SUB_FROM /* && NOT ME */) { |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1032 | act = gaim_blist_node_action_new(_("Cancel Presence Notification"), |
| 10662 | 1033 | jabber_buddy_cancel_presence_notification, NULL, NULL); |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1034 | m = g_list_append(m, act); |
| 7014 | 1035 | } |
| 1036 | ||
| 1037 | if(!(jb->subscription & JABBER_SUB_TO)) { | |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1038 | act = gaim_blist_node_action_new(_("(Re-)Request authorization"), |
| 10662 | 1039 | jabber_buddy_rerequest_auth, NULL, NULL); |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1040 | m = g_list_append(m, act); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1041 | |
| 8185 | 1042 | } else /* if(NOT ME) */{ |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1043 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1044 | /* shouldn't this just happen automatically when the buddy is |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1045 | removed? */ |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1046 | act = gaim_blist_node_action_new(_("Unsubscribe"), |
| 10662 | 1047 | jabber_buddy_unsubscribe, NULL, NULL); |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1048 | m = g_list_append(m, act); |
| 7014 | 1049 | } |
| 1050 | ||
| 1051 | return m; | |
| 1052 | } | |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1053 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1054 | GList * |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1055 | jabber_blist_node_menu(GaimBlistNode *node) |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1056 | { |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1057 | if(GAIM_BLIST_NODE_IS_BUDDY(node)) { |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1058 | return jabber_buddy_menu((GaimBuddy *) node); |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1059 | } else { |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1060 | return NULL; |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1061 | } |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1062 | } |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1063 | |
|
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
1064 | |
| 9954 | 1065 | const char * |
| 1066 | jabber_buddy_state_get_name(JabberBuddyState state) | |
| 1067 | { | |
| 1068 | switch(state) { | |
| 1069 | case JABBER_BUDDY_STATE_UNKNOWN: | |
| 1070 | return _("Unknown"); | |
| 1071 | case JABBER_BUDDY_STATE_ERROR: | |
| 1072 | return _("Error"); | |
| 1073 | case JABBER_BUDDY_STATE_UNAVAILABLE: | |
| 1074 | return _("Offline"); | |
| 1075 | case JABBER_BUDDY_STATE_ONLINE: | |
| 1076 | return _("Online"); | |
| 1077 | case JABBER_BUDDY_STATE_CHAT: | |
| 1078 | return _("Chatty"); | |
| 1079 | case JABBER_BUDDY_STATE_AWAY: | |
| 1080 | return _("Away"); | |
| 1081 | case JABBER_BUDDY_STATE_XA: | |
| 1082 | return _("Extended Away"); | |
| 1083 | case JABBER_BUDDY_STATE_DND: | |
| 1084 | return _("Do Not Disturb"); | |
| 1085 | } | |
| 1086 | ||
| 1087 | return _("Unknown"); | |
| 1088 | } | |
| 1089 | ||
| 1090 | JabberBuddyState jabber_buddy_status_id_get_state(const char *id) { | |
| 1091 | if(!id) | |
| 1092 | return JABBER_BUDDY_STATE_UNKNOWN; | |
| 1093 | if(!strcmp(id, "online")) | |
| 1094 | return JABBER_BUDDY_STATE_ONLINE; | |
| 1095 | if(!strcmp(id, "chat")) | |
| 1096 | return JABBER_BUDDY_STATE_CHAT; | |
| 1097 | if(!strcmp(id, "away")) | |
| 1098 | return JABBER_BUDDY_STATE_AWAY; | |
| 1099 | if(!strcmp(id, "xa")) | |
| 1100 | return JABBER_BUDDY_STATE_XA; | |
| 1101 | if(!strcmp(id, "dnd")) | |
| 1102 | return JABBER_BUDDY_STATE_DND; | |
| 1103 | if(!strcmp(id, "offline")) | |
| 1104 | return JABBER_BUDDY_STATE_UNAVAILABLE; | |
| 1105 | if(!strcmp(id, "error")) | |
| 1106 | return JABBER_BUDDY_STATE_ERROR; | |
| 1107 | ||
| 1108 | return JABBER_BUDDY_STATE_UNKNOWN; | |
| 1109 | } | |
| 1110 | ||
| 1111 | const char *jabber_buddy_state_get_status_id(JabberBuddyState state) { | |
| 1112 | switch(state) { | |
| 1113 | case JABBER_BUDDY_STATE_CHAT: | |
| 1114 | return "chat"; | |
| 1115 | case JABBER_BUDDY_STATE_AWAY: | |
| 1116 | return "away"; | |
| 1117 | case JABBER_BUDDY_STATE_XA: | |
| 1118 | return "xa"; | |
| 1119 | case JABBER_BUDDY_STATE_DND: | |
| 1120 | return "dnd"; | |
| 1121 | case JABBER_BUDDY_STATE_ONLINE: | |
| 1122 | return "online"; | |
| 1123 | case JABBER_BUDDY_STATE_UNKNOWN: | |
| 1124 | case JABBER_BUDDY_STATE_ERROR: | |
| 1125 | return NULL; | |
| 1126 | case JABBER_BUDDY_STATE_UNAVAILABLE: | |
| 1127 | return "offline"; | |
| 1128 | } | |
| 1129 | return NULL; | |
| 1130 | } |