Mercurial > pidgin
annotate src/protocols/jabber/buddy.c @ 9250:ff8e380015e3
[gaim-migrate @ 10049]
I think Nathan meant this.
It would be nice if Nathan (or some other jabber expert) could make sure
I actually documented the args correctly. Especially the one with the XXX
by it (/msg). Then I could fix it and remove that XXX comment.
Also someone should comment on whether this help string format sucks or not,
before I go and write help strings for irc.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Wed, 09 Jun 2004 18:58:26 +0000 |
parents | 7ab20f829190 |
children | 7a8aa87164ae |
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" | |
22 #include "debug.h" | |
7076 | 23 #include "imgstore.h" |
7014 | 24 #include "multi.h" |
25 #include "notify.h" | |
26 #include "request.h" | |
27 #include "util.h" | |
7395 | 28 #include "xmlnode.h" |
7014 | 29 |
30 #include "buddy.h" | |
31 #include "chat.h" | |
32 #include "jabber.h" | |
33 #include "iq.h" | |
34 #include "presence.h" | |
7395 | 35 #include "si.h" |
7014 | 36 |
37 | |
7116 | 38 void jabber_buddy_free(JabberBuddy *jb) |
39 { | |
40 g_return_if_fail(jb != NULL); | |
41 | |
42 if(jb->error_msg) | |
43 g_free(jb->error_msg); | |
44 while(jb->resources) | |
45 jabber_buddy_resource_free(jb->resources->data); | |
46 | |
47 g_free(jb); | |
48 } | |
49 | |
7014 | 50 JabberBuddy *jabber_buddy_find(JabberStream *js, const char *name, |
51 gboolean create) | |
52 { | |
53 JabberBuddy *jb; | |
7445 | 54 const char *realname; |
7014 | 55 |
7445 | 56 if(!(realname = jabber_normalize(js->gc->account, name))) |
7014 | 57 return NULL; |
58 | |
59 jb = g_hash_table_lookup(js->buddies, realname); | |
60 | |
61 if(!jb && create) { | |
62 jb = g_new0(JabberBuddy, 1); | |
63 g_hash_table_insert(js->buddies, g_strdup(realname), jb); | |
64 } | |
65 | |
66 return jb; | |
67 } | |
68 | |
69 | |
70 JabberBuddyResource *jabber_buddy_find_resource(JabberBuddy *jb, | |
71 const char *resource) | |
72 { | |
73 JabberBuddyResource *jbr = NULL; | |
74 GList *l; | |
75 | |
76 if(!jb) | |
77 return NULL; | |
78 | |
79 for(l = jb->resources; l; l = l->next) | |
80 { | |
81 if(!jbr && !resource) { | |
82 jbr = l->data; | |
83 } else if(!resource) { | |
84 if(((JabberBuddyResource *)l->data)->priority >= jbr->priority) | |
85 jbr = l->data; | |
86 } else if(((JabberBuddyResource *)l->data)->name) { | |
87 if(!strcmp(((JabberBuddyResource *)l->data)->name, resource)) { | |
88 jbr = l->data; | |
89 break; | |
90 } | |
91 } | |
92 } | |
93 | |
94 return jbr; | |
95 } | |
96 | |
97 void jabber_buddy_track_resource(JabberBuddy *jb, const char *resource, | |
98 int priority, int state, const char *status) | |
99 { | |
100 JabberBuddyResource *jbr = jabber_buddy_find_resource(jb, resource); | |
101 | |
102 if(!jbr) { | |
103 jbr = g_new0(JabberBuddyResource, 1); | |
7116 | 104 jbr->jb = jb; |
7014 | 105 jbr->name = g_strdup(resource); |
106 jbr->capabilities = JABBER_CAP_XHTML; | |
107 jb->resources = g_list_append(jb->resources, jbr); | |
108 } | |
109 jbr->priority = priority; | |
110 jbr->state = state; | |
111 if(jbr->status) | |
112 g_free(jbr->status); | |
113 jbr->status = g_strdup(status); | |
114 } | |
115 | |
7116 | 116 void jabber_buddy_resource_free(JabberBuddyResource *jbr) |
117 { | |
118 g_return_if_fail(jbr != NULL); | |
119 | |
120 jbr->jb->resources = g_list_remove(jbr->jb->resources, jbr); | |
121 | |
122 g_free(jbr->name); | |
123 if(jbr->status) | |
124 g_free(jbr->status); | |
8400 | 125 if(jbr->thread_id) |
126 g_free(jbr->thread_id); | |
7116 | 127 g_free(jbr); |
128 } | |
129 | |
7014 | 130 void jabber_buddy_remove_resource(JabberBuddy *jb, const char *resource) |
131 { | |
132 JabberBuddyResource *jbr = jabber_buddy_find_resource(jb, resource); | |
133 | |
134 if(!jbr) | |
135 return; | |
136 | |
7116 | 137 jabber_buddy_resource_free(jbr); |
7014 | 138 } |
139 | |
140 const char *jabber_buddy_get_status_msg(JabberBuddy *jb) | |
141 { | |
142 JabberBuddyResource *jbr; | |
143 | |
144 if(!jb) | |
145 return NULL; | |
146 | |
147 jbr = jabber_buddy_find_resource(jb, NULL); | |
148 | |
149 if(!jbr) | |
150 return NULL; | |
151 | |
152 return jbr->status; | |
153 } | |
154 | |
155 /******* | |
156 * This is the old vCard stuff taken from the old prpl. vCards, by definition | |
157 * are a temporary thing until jabber can get its act together and come up | |
158 * with a format for user information, hence the namespace of 'vcard-temp' | |
159 * | |
160 * Since I don't feel like putting that much work into something that's | |
161 * _supposed_ to go away, i'm going to just copy the kludgy old code here, | |
162 * and make it purdy when jabber comes up with a standards-track JEP to | |
163 * replace vcard-temp | |
164 * --Nathan | |
165 *******/ | |
166 | |
167 /*---------------------------------------*/ | |
168 /* Jabber "set info" (vCard) support */ | |
169 /*---------------------------------------*/ | |
170 | |
171 /* | |
172 * V-Card format: | |
173 * | |
174 * <vCard prodid='' version='' xmlns=''> | |
175 * <FN></FN> | |
176 * <N> | |
177 * <FAMILY/> | |
178 * <GIVEN/> | |
179 * </N> | |
180 * <NICKNAME/> | |
181 * <URL/> | |
182 * <ADR> | |
183 * <STREET/> | |
184 * <EXTADD/> | |
185 * <LOCALITY/> | |
186 * <REGION/> | |
187 * <PCODE/> | |
188 * <COUNTRY/> | |
189 * </ADR> | |
190 * <TEL/> | |
191 * <EMAIL/> | |
192 * <ORG> | |
193 * <ORGNAME/> | |
194 * <ORGUNIT/> | |
195 * </ORG> | |
196 * <TITLE/> | |
197 * <ROLE/> | |
198 * <DESC/> | |
199 * <BDAY/> | |
200 * </vCard> | |
201 * | |
202 * See also: | |
203 * | |
204 * http://docs.jabber.org/proto/html/vcard-temp.html | |
205 * http://www.vcard-xml.org/dtd/vCard-XML-v2-20010520.dtd | |
206 */ | |
207 | |
208 /* | |
209 * Cross-reference user-friendly V-Card entry labels to vCard XML tags | |
210 * and attributes. | |
211 * | |
212 * Order is (or should be) unimportant. For example: we have no way of | |
213 * knowing in what order real data will arrive. | |
214 * | |
215 * Format: Label, Pre-set text, "visible" flag, "editable" flag, XML tag | |
216 * name, XML tag's parent tag "path" (relative to vCard node). | |
217 * | |
218 * List is terminated by a NULL label pointer. | |
219 * | |
220 * Entries with no label text, but with XML tag and parent tag | |
221 * entries, are used by V-Card XML construction routines to | |
222 * "automagically" construct the appropriate XML node tree. | |
223 * | |
224 * Thoughts on future direction/expansion | |
225 * | |
226 * This is a "simple" vCard. | |
227 * | |
228 * It is possible for nodes other than the "vCard" node to have | |
229 * attributes. Should that prove necessary/desirable, add an | |
230 * "attributes" pointer to the vcard_template struct, create the | |
231 * necessary tag_attr structs, and add 'em to the vcard_dflt_data | |
232 * array. | |
233 * | |
234 * The above changes will (obviously) require changes to the vCard | |
235 * construction routines. | |
236 */ | |
237 | |
238 struct vcard_template { | |
239 char *label; /* label text pointer */ | |
240 char *text; /* entry text pointer */ | |
241 int visible; /* should entry field be "visible?" */ | |
242 int editable; /* should entry field be editable? */ | |
243 char *tag; /* tag text */ | |
244 char *ptag; /* parent tag "path" text */ | |
245 char *url; /* vCard display format if URL */ | |
246 } vcard_template_data[] = { | |
247 {N_("Full Name"), NULL, TRUE, TRUE, "FN", NULL, NULL}, | |
248 {N_("Family Name"), NULL, TRUE, TRUE, "FAMILY", "N", NULL}, | |
249 {N_("Given Name"), NULL, TRUE, TRUE, "GIVEN", "N", NULL}, | |
250 {N_("Nickname"), NULL, TRUE, TRUE, "NICKNAME", NULL, NULL}, | |
251 {N_("URL"), NULL, TRUE, TRUE, "URL", NULL, "<A HREF=\"%s\">%s</A>"}, | |
252 {N_("Street Address"), NULL, TRUE, TRUE, "STREET", "ADR", NULL}, | |
253 {N_("Extended Address"), NULL, TRUE, TRUE, "EXTADD", "ADR", NULL}, | |
254 {N_("Locality"), NULL, TRUE, TRUE, "LOCALITY", "ADR", NULL}, | |
255 {N_("Region"), NULL, TRUE, TRUE, "REGION", "ADR", NULL}, | |
256 {N_("Postal Code"), NULL, TRUE, TRUE, "PCODE", "ADR", NULL}, | |
257 {N_("Country"), NULL, TRUE, TRUE, "COUNTRY", "ADR", NULL}, | |
258 {N_("Telephone"), NULL, TRUE, TRUE, "TELEPHONE", NULL, NULL}, | |
259 {N_("Email"), NULL, TRUE, TRUE, "EMAIL", NULL, "<A HREF=\"mailto:%s\">%s</A>"}, | |
260 {N_("Organization Name"), NULL, TRUE, TRUE, "ORGNAME", "ORG", NULL}, | |
261 {N_("Organization Unit"), NULL, TRUE, TRUE, "ORGUNIT", "ORG", NULL}, | |
262 {N_("Title"), NULL, TRUE, TRUE, "TITLE", NULL, NULL}, | |
263 {N_("Role"), NULL, TRUE, TRUE, "ROLE", NULL, NULL}, | |
264 {N_("Birthday"), NULL, TRUE, TRUE, "BDAY", NULL, NULL}, | |
265 {N_("Description"), NULL, TRUE, TRUE, "DESC", NULL, NULL}, | |
266 {"", NULL, TRUE, TRUE, "N", NULL, NULL}, | |
267 {"", NULL, TRUE, TRUE, "ADR", NULL, NULL}, | |
268 {"", NULL, TRUE, TRUE, "ORG", NULL, NULL}, | |
269 {NULL, NULL, 0, 0, NULL, NULL, NULL} | |
270 }; | |
271 | |
272 /* | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8401
diff
changeset
|
273 * The "vCard" tag's attribute list... |
7014 | 274 */ |
275 struct tag_attr { | |
276 char *attr; | |
277 char *value; | |
278 } vcard_tag_attr_list[] = { | |
279 {"prodid", "-//HandGen//NONSGML vGen v1.0//EN"}, | |
280 {"version", "2.0", }, | |
281 {"xmlns", "vcard-temp", }, | |
282 {NULL, NULL}, | |
283 }; | |
284 | |
285 | |
286 /* | |
287 * Insert a tag node into an xmlnode tree, recursively inserting parent tag | |
288 * nodes as necessary | |
289 * | |
290 * Returns pointer to inserted node | |
291 * | |
292 * Note to hackers: this code is designed to be re-entrant (it's recursive--it | |
293 * calls itself), so don't put any "static"s in here! | |
294 */ | |
295 static xmlnode *insert_tag_to_parent_tag(xmlnode *start, const char *parent_tag, const char *new_tag) | |
296 { | |
297 xmlnode *x = NULL; | |
298 | |
299 /* | |
300 * If the parent tag wasn't specified, see if we can get it | |
301 * from the vCard template struct. | |
302 */ | |
303 if(parent_tag == NULL) { | |
304 struct vcard_template *vc_tp = vcard_template_data; | |
305 | |
306 while(vc_tp->label != NULL) { | |
307 if(strcmp(vc_tp->tag, new_tag) == 0) { | |
308 parent_tag = vc_tp->ptag; | |
309 break; | |
310 } | |
311 ++vc_tp; | |
312 } | |
313 } | |
314 | |
315 /* | |
316 * If we have a parent tag... | |
317 */ | |
318 if(parent_tag != NULL ) { | |
319 /* | |
320 * Try to get the parent node for a tag | |
321 */ | |
322 if((x = xmlnode_get_child(start, parent_tag)) == NULL) { | |
323 /* | |
324 * Descend? | |
325 */ | |
326 char *grand_parent = g_strdup(parent_tag); | |
327 char *parent; | |
328 | |
329 if((parent = strrchr(grand_parent, '/')) != NULL) { | |
330 *(parent++) = '\0'; | |
331 x = insert_tag_to_parent_tag(start, grand_parent, parent); | |
332 } else { | |
333 x = xmlnode_new_child(start, grand_parent); | |
334 } | |
335 g_free(grand_parent); | |
336 } else { | |
337 /* | |
338 * We found *something* to be the parent node. | |
339 * Note: may be the "root" node! | |
340 */ | |
341 xmlnode *y; | |
342 if((y = xmlnode_get_child(x, new_tag)) != NULL) { | |
343 return(y); | |
344 } | |
345 } | |
346 } | |
347 | |
348 /* | |
349 * insert the new tag into its parent node | |
350 */ | |
351 return(xmlnode_new_child((x == NULL? start : x), new_tag)); | |
352 } | |
353 | |
354 /* | |
355 * Send vCard info to Jabber server | |
356 */ | |
357 void jabber_set_info(GaimConnection *gc, const char *info) | |
358 { | |
359 JabberIq *iq; | |
360 JabberStream *js = gc->proto_data; | |
361 xmlnode *vc_node; | |
362 | |
363 | |
364 /* | |
365 * Send only if there's actually any *information* to send | |
366 */ | |
367 vc_node = xmlnode_from_str(info, -1); | |
368 | |
369 if(vc_node) { | |
370 if (vc_node->name && | |
371 !g_ascii_strncasecmp(vc_node->name, "vcard", 5)) { | |
372 iq = jabber_iq_new(js, JABBER_IQ_SET); | |
373 xmlnode_insert_child(iq->node, vc_node); | |
374 jabber_iq_send(iq); | |
375 } else { | |
376 xmlnode_free(vc_node); | |
377 } | |
378 } | |
379 } | |
380 | |
381 /* | |
382 * This is the callback from the "ok clicked" for "set vCard" | |
383 * | |
384 * Formats GSList data into XML-encoded string and returns a pointer | |
385 * to said string. | |
386 * | |
387 * g_free()'ing the returned string space is the responsibility of | |
388 * the caller. | |
389 */ | |
390 static void | |
391 jabber_format_info(GaimConnection *gc, GaimRequestFields *fields) | |
392 { | |
393 GaimAccount *account; | |
394 xmlnode *vc_node; | |
395 GaimRequestField *field; | |
396 const char *text; | |
397 char *p; | |
398 const struct vcard_template *vc_tp; | |
399 struct tag_attr *tag_attr; | |
400 | |
401 vc_node = xmlnode_new("vCard"); | |
402 | |
403 for(tag_attr = vcard_tag_attr_list; tag_attr->attr != NULL; ++tag_attr) | |
404 xmlnode_set_attrib(vc_node, tag_attr->attr, tag_attr->value); | |
405 | |
406 for (vc_tp = vcard_template_data; vc_tp->label != NULL; vc_tp++) { | |
407 if (*vc_tp->label == '\0') | |
408 continue; | |
409 | |
410 field = gaim_request_fields_get_field(fields, vc_tp->tag); | |
411 text = gaim_request_field_string_get_value(field); | |
412 | |
413 gaim_debug(GAIM_DEBUG_INFO, "jabber", | |
414 "Setting %s to '%s'\n", vc_tp->tag, text); | |
415 | |
416 if (text != NULL && *text != '\0') { | |
417 xmlnode *xp; | |
418 | |
419 if ((xp = insert_tag_to_parent_tag(vc_node, | |
420 NULL, vc_tp->tag)) != NULL) { | |
421 | |
422 xmlnode_insert_data(xp, text, -1); | |
423 } | |
424 } | |
425 } | |
426 | |
7642 | 427 p = xmlnode_to_str(vc_node, NULL); |
7014 | 428 xmlnode_free(vc_node); |
429 | |
430 account = gaim_connection_get_account(gc); | |
431 | |
432 if (account != NULL) { | |
433 gaim_account_set_user_info(account, p); | |
434 | |
435 if (gc != NULL) | |
436 serv_set_info(gc, p); | |
437 } | |
438 | |
439 g_free(p); | |
440 } | |
441 | |
442 /* | |
443 * This gets executed by the proto action | |
444 * | |
445 * Creates a new GaimRequestFields struct, gets the XML-formatted user_info | |
446 * string (if any) into GSLists for the (multi-entry) edit dialog and | |
447 * calls the set_vcard dialog. | |
448 */ | |
9015 | 449 void jabber_setup_set_info(GaimPluginAction *action) |
7014 | 450 { |
9015 | 451 GaimConnection *gc = (GaimConnection *) action->context; |
7014 | 452 GaimRequestFields *fields; |
453 GaimRequestFieldGroup *group; | |
454 GaimRequestField *field; | |
455 const struct vcard_template *vc_tp; | |
456 char *user_info; | |
457 char *cdata; | |
458 xmlnode *x_vc_data = NULL; | |
459 | |
460 fields = gaim_request_fields_new(); | |
461 group = gaim_request_field_group_new(NULL); | |
462 gaim_request_fields_add_group(fields, group); | |
463 | |
464 /* | |
465 * Get existing, XML-formatted, user info | |
466 */ | |
467 if((user_info = g_strdup(gaim_account_get_user_info(gc->account))) != NULL) | |
468 x_vc_data = xmlnode_from_str(user_info, -1); | |
469 else | |
470 user_info = g_strdup(""); | |
471 | |
472 /* | |
473 * Set up GSLists for edit with labels from "template," data from user info | |
474 */ | |
475 for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
476 xmlnode *data_node; | |
477 if((vc_tp->label)[0] == '\0') | |
478 continue; | |
479 if(vc_tp->ptag == NULL) { | |
480 data_node = xmlnode_get_child(x_vc_data, vc_tp->tag); | |
481 } else { | |
482 gchar *tag = g_strdup_printf("%s/%s", vc_tp->ptag, vc_tp->tag); | |
483 data_node = xmlnode_get_child(x_vc_data, tag); | |
484 g_free(tag); | |
485 } | |
486 if(data_node) | |
487 cdata = xmlnode_get_data(data_node); | |
488 else | |
489 cdata = NULL; | |
490 | |
491 if(strcmp(vc_tp->tag, "DESC") == 0) { | |
492 field = gaim_request_field_string_new(vc_tp->tag, | |
493 _(vc_tp->label), cdata, | |
494 TRUE); | |
495 } else { | |
496 field = gaim_request_field_string_new(vc_tp->tag, | |
497 _(vc_tp->label), cdata, | |
498 FALSE); | |
499 } | |
500 | |
501 gaim_request_field_group_add_field(group, field); | |
502 } | |
503 | |
504 if(x_vc_data != NULL) | |
505 xmlnode_free(x_vc_data); | |
506 | |
507 g_free(user_info); | |
508 | |
509 gaim_request_fields(gc, _("Edit Jabber vCard"), | |
510 _("Edit Jabber vCard"), | |
511 _("All items below are optional. Enter only the " | |
512 "information with which you feel comfortable."), | |
513 fields, | |
514 _("Save"), G_CALLBACK(jabber_format_info), | |
515 _("Cancel"), NULL, | |
516 gc); | |
517 } | |
518 | |
519 /*---------------------------------------*/ | |
520 /* End Jabber "set info" (vCard) support */ | |
521 /*---------------------------------------*/ | |
522 | |
523 /****** | |
524 * end of that ancient crap that needs to die | |
525 ******/ | |
526 | |
527 | |
7395 | 528 static void jabber_vcard_parse(JabberStream *js, xmlnode *packet, gpointer data) |
7014 | 529 { |
530 GList *resources; | |
531 const char *from = xmlnode_get_attrib(packet, "from"); | |
532 JabberBuddy *jb; | |
533 JabberBuddyResource *jbr; | |
534 GString *info_text; | |
7306 | 535 char *resource_name; |
7955 | 536 char *bare_jid; |
7014 | 537 char *title; |
8213 | 538 char *text; |
7014 | 539 xmlnode *vcard; |
7955 | 540 GaimBuddy *b; |
7014 | 541 |
542 if(!from) | |
543 return; | |
544 | |
545 resource_name = jabber_get_resource(from); | |
7955 | 546 bare_jid = jabber_get_bare_jid(from); |
547 | |
548 b = gaim_find_buddy(js->gc->account, bare_jid); | |
7014 | 549 |
550 jb = jabber_buddy_find(js, from, TRUE); | |
551 info_text = g_string_new(""); | |
552 | |
8213 | 553 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", _("Jabber ID"), |
7014 | 554 from); |
555 | |
556 if(resource_name) { | |
557 jbr = jabber_buddy_find_resource(jb, resource_name); | |
558 if(jbr) { | |
7145 | 559 char *purdy = NULL; |
560 if(jbr->status) | |
561 purdy = gaim_strdup_withhtml(jbr->status); | |
8213 | 562 g_string_append_printf(info_text, "<b>%s:</b> %s%s%s<br/>", |
7014 | 563 _("Status"), jabber_get_state_string(jbr->state), |
564 purdy ? ": " : "", | |
565 purdy ? purdy : ""); | |
7145 | 566 if(purdy) |
567 g_free(purdy); | |
7014 | 568 } else { |
8213 | 569 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
7014 | 570 _("Status"), _("Unknown")); |
571 } | |
572 } else { | |
573 for(resources = jb->resources; resources; resources = resources->next) { | |
7145 | 574 char *purdy = NULL; |
7014 | 575 jbr = resources->data; |
7145 | 576 if(jbr->status) |
577 purdy = gaim_strdup_withhtml(jbr->status); | |
8213 | 578 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
7014 | 579 _("Resource"), jbr->name); |
8213 | 580 g_string_append_printf(info_text, "<b>%s:</b> %s%s%s<br/><br/>", |
7014 | 581 _("Status"), jabber_get_state_string(jbr->state), |
582 purdy ? ": " : "", | |
583 purdy ? purdy : ""); | |
7145 | 584 if(purdy) |
585 g_free(purdy); | |
7014 | 586 } |
587 } | |
588 | |
7306 | 589 g_free(resource_name); |
7955 | 590 g_free(bare_jid); |
7306 | 591 |
7014 | 592 if((vcard = xmlnode_get_child(packet, "vCard"))) { |
593 xmlnode *child; | |
594 for(child = vcard->child; child; child = child->next) | |
595 { | |
596 xmlnode *child2; | |
597 | |
8135 | 598 if(child->type != XMLNODE_TYPE_TAG) |
7014 | 599 continue; |
600 | |
601 text = xmlnode_get_data(child); | |
602 if(text && !strcmp(child->name, "FN")) { | |
8213 | 603 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
7014 | 604 _("Full Name"), text); |
605 } else if(!strcmp(child->name, "N")) { | |
606 for(child2 = child->child; child2; child2 = child2->next) | |
607 { | |
608 char *text2; | |
609 | |
8135 | 610 if(child2->type != XMLNODE_TYPE_TAG) |
7014 | 611 continue; |
612 | |
613 text2 = xmlnode_get_data(child2); | |
614 if(text2 && !strcmp(child2->name, "FAMILY")) { | |
615 g_string_append_printf(info_text, | |
8213 | 616 "<b>%s:</b> %s<br/>", |
7014 | 617 _("Family Name"), text2); |
618 } else if(text2 && !strcmp(child2->name, "GIVEN")) { | |
619 g_string_append_printf(info_text, | |
8213 | 620 "<b>%s:</b> %s<br/>", |
7014 | 621 _("Given Name"), text2); |
622 } else if(text2 && !strcmp(child2->name, "MIDDLE")) { | |
623 g_string_append_printf(info_text, | |
8213 | 624 "<b>%s:</b> %s<br/>", |
7014 | 625 _("Middle Name"), text2); |
626 } | |
627 g_free(text2); | |
628 } | |
629 } else if(text && !strcmp(child->name, "NICKNAME")) { | |
630 serv_got_alias(js->gc, from, text); | |
7955 | 631 if(b) { |
632 gaim_blist_node_set_string((GaimBlistNode*)b, "servernick", text); | |
633 gaim_blist_save(); | |
634 } | |
8213 | 635 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
7014 | 636 _("Nickname"), text); |
637 } else if(text && !strcmp(child->name, "BDAY")) { | |
8213 | 638 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
7014 | 639 _("Birthday"), text); |
640 } else if(!strcmp(child->name, "ADR")) { | |
641 /* show which address it is */ | |
642 if(child->child) | |
8213 | 643 g_string_append_printf(info_text, "<b>%s:</b><br/>", |
7014 | 644 _("Address")); |
645 for(child2 = child->child; child2; child2 = child2->next) | |
646 { | |
647 char *text2; | |
648 | |
8135 | 649 if(child2->type != XMLNODE_TYPE_TAG) |
7014 | 650 continue; |
651 | |
652 text2 = xmlnode_get_data(child2); | |
653 if(text2 && !strcmp(child2->name, "POBOX")) { | |
654 g_string_append_printf(info_text, | |
8213 | 655 " <b>%s:</b> %s<br/>", |
7014 | 656 _("P.O. Box"), text2); |
657 } else if(text2 && !strcmp(child2->name, "EXTADR")) { | |
658 g_string_append_printf(info_text, | |
8213 | 659 " <b>%s:</b> %s<br/>", |
7014 | 660 _("Extended Address"), text2); |
661 } else if(text2 && !strcmp(child2->name, "STREET")) { | |
662 g_string_append_printf(info_text, | |
8213 | 663 " <b>%s:</b> %s<br/>", |
7014 | 664 _("Street Address"), text2); |
665 } else if(text2 && !strcmp(child2->name, "LOCALITY")) { | |
666 g_string_append_printf(info_text, | |
8213 | 667 " <b>%s:</b> %s<br/>", |
7014 | 668 _("Locality"), text2); |
669 } else if(text2 && !strcmp(child2->name, "REGION")) { | |
670 g_string_append_printf(info_text, | |
8213 | 671 " <b>%s:</b> %s<br/>", |
7014 | 672 _("Region"), text2); |
673 } else if(text2 && !strcmp(child2->name, "PCODE")) { | |
674 g_string_append_printf(info_text, | |
8213 | 675 " <b>%s:</b> %s<br/>", |
7014 | 676 _("Postal Code"), text2); |
677 } else if(text2 && (!strcmp(child2->name, "CTRY") | |
678 || !strcmp(child2->name, "COUNTRY"))) { | |
679 g_string_append_printf(info_text, | |
8213 | 680 " <b>%s:</b> %s<br/>", |
7014 | 681 _("Country"), text2); |
682 } | |
683 g_free(text2); | |
684 } | |
685 } else if(!strcmp(child->name, "TEL")) { | |
686 char *number; | |
687 if((child2 = xmlnode_get_child(child, "NUMBER"))) { | |
688 /* show what kind of number it is */ | |
689 number = xmlnode_get_data(child2); | |
690 if(number) { | |
691 g_string_append_printf(info_text, | |
8213 | 692 "<b>%s:</b> %s<br/>", _("Telephone"), number); |
7014 | 693 g_free(number); |
694 } | |
695 } else if((number = xmlnode_get_data(child))) { | |
696 /* lots of clients (including gaim) do this, but it's | |
697 * out of spec */ | |
698 g_string_append_printf(info_text, | |
8213 | 699 "<b>%s:</b> %s<br/>", _("Telephone"), number); |
7014 | 700 g_free(number); |
701 } | |
702 } else if(!strcmp(child->name, "EMAIL")) { | |
703 char *userid; | |
704 if((child2 = xmlnode_get_child(child, "USERID"))) { | |
705 /* show what kind of email it is */ | |
706 userid = xmlnode_get_data(child2); | |
707 if(userid) { | |
708 g_string_append_printf(info_text, | |
8213 | 709 "<b>%s:</b> <a href='mailto:%s'>%s</a><br/>", |
7014 | 710 _("Email"), userid, userid); |
711 g_free(userid); | |
712 } | |
713 } else if((userid = xmlnode_get_data(child))) { | |
714 /* lots of clients (including gaim) do this, but it's | |
715 * out of spec */ | |
716 g_string_append_printf(info_text, | |
8213 | 717 "<b>%s:</b> <a href='mailto:%s'>%s</a><br/>", |
7014 | 718 _("Email"), userid, userid); |
719 g_free(userid); | |
720 } | |
721 } else if(!strcmp(child->name, "ORG")) { | |
722 for(child2 = child->child; child2; child2 = child2->next) | |
723 { | |
724 char *text2; | |
725 | |
8135 | 726 if(child2->type != XMLNODE_TYPE_TAG) |
7014 | 727 continue; |
728 | |
729 text2 = xmlnode_get_data(child2); | |
730 if(text2 && !strcmp(child2->name, "ORGNAME")) { | |
731 g_string_append_printf(info_text, | |
8213 | 732 "<b>%s:</b> %s<br/>", |
7014 | 733 _("Organization Name"), text2); |
734 } else if(text2 && !strcmp(child2->name, "ORGUNIT")) { | |
735 g_string_append_printf(info_text, | |
8213 | 736 "<b>%s:</b> %s<br/>", |
7014 | 737 _("Organization Unit"), text2); |
738 } | |
739 g_free(text2); | |
740 } | |
741 } else if(text && !strcmp(child->name, "TITLE")) { | |
8213 | 742 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
7014 | 743 _("Title"), text); |
744 } else if(text && !strcmp(child->name, "ROLE")) { | |
8213 | 745 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
7014 | 746 _("Role"), text); |
747 } else if(text && !strcmp(child->name, "DESC")) { | |
8213 | 748 g_string_append_printf(info_text, "<b>%s:</b> %s<br/>", |
749 _("Description"), text); | |
7076 | 750 } else if(!strcmp(child->name, "PHOTO") || |
751 !strcmp(child->name, "LOGO")) { | |
752 if((child2 = xmlnode_get_child(child, "BINVAL"))) { | |
753 char *data, *text2; | |
754 int size, imgid; | |
755 if((text2 = xmlnode_get_data(child2))) { | |
7106
db6bd3e794d8
[gaim-migrate @ 7671]
Christian Hammond <chipx86@chipx86.com>
parents:
7076
diff
changeset
|
756 gaim_base64_decode(text2, &data, &size); |
7076 | 757 |
758 imgid = gaim_imgstore_add(data, size, "logo.png"); | |
759 g_string_append_printf(info_text, | |
7116 | 760 "<b>%s:</b> <img id='%d'><br/>", |
7076 | 761 strcmp(child->name, "PHOTO") == 0 ? |
762 _("Photo") : _("Logo"), | |
763 imgid); | |
764 | |
765 g_free(data); | |
766 g_free(text2); | |
767 } | |
768 } | |
7014 | 769 } |
770 g_free(text); | |
771 } | |
772 } | |
773 | |
774 title = g_strdup_printf("User info for %s", from); | |
775 | |
8213 | 776 text = gaim_strdup_withhtml(info_text->str); |
777 | |
7014 | 778 gaim_notify_formatted(NULL, title, _("Jabber Profile"), |
8213 | 779 NULL, text, NULL, NULL); |
7014 | 780 |
781 g_free(title); | |
782 g_string_free(info_text, TRUE); | |
8213 | 783 g_free(text); |
7014 | 784 } |
785 | |
786 void jabber_buddy_get_info(GaimConnection *gc, const char *who) | |
787 { | |
788 JabberStream *js = gc->proto_data; | |
789 JabberIq *iq; | |
790 xmlnode *vcard; | |
791 | |
792 iq = jabber_iq_new(js, JABBER_IQ_GET); | |
793 | |
794 xmlnode_set_attrib(iq->node, "to", who); | |
795 vcard = xmlnode_new_child(iq->node, "vCard"); | |
796 xmlnode_set_attrib(vcard, "xmlns", "vcard-temp"); | |
797 | |
7395 | 798 jabber_iq_set_callback(iq, jabber_vcard_parse, NULL); |
7014 | 799 |
800 jabber_iq_send(iq); | |
801 } | |
802 | |
803 void jabber_buddy_get_info_chat(GaimConnection *gc, int id, | |
804 const char *resource) | |
805 { | |
806 JabberStream *js = gc->proto_data; | |
807 JabberChat *chat = jabber_chat_find_by_id(js, id); | |
808 char *full_jid; | |
809 | |
810 if(!chat) | |
811 return; | |
812 | |
813 full_jid = g_strdup_printf("%s@%s/%s", chat->room, chat->server, resource); | |
814 jabber_buddy_get_info(gc, full_jid); | |
815 g_free(full_jid); | |
816 } | |
817 | |
7395 | 818 |
7014 | 819 static void jabber_buddy_set_invisibility(JabberStream *js, const char *who, |
820 gboolean invisible) | |
821 { | |
822 JabberBuddy *jb = jabber_buddy_find(js, who, TRUE); | |
823 xmlnode *presence; | |
824 | |
825 presence = jabber_presence_create(js->gc->away_state, js->gc->away); | |
826 xmlnode_set_attrib(presence, "to", who); | |
827 if(invisible) { | |
828 xmlnode_set_attrib(presence, "type", "invisible"); | |
829 jb->invisible |= JABBER_INVIS_BUDDY; | |
830 } else { | |
831 jb->invisible &= ~JABBER_INVIS_BUDDY; | |
832 } | |
833 | |
834 jabber_send(js, presence); | |
835 xmlnode_free(presence); | |
836 } | |
837 | |
9030 | 838 static void jabber_buddy_make_invisible(GaimBlistNode *node, gpointer data) |
7014 | 839 { |
9030 | 840 GaimBuddy *buddy; |
841 GaimConnection *gc; | |
842 JabberStream *js; | |
843 | |
844 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
845 | |
846 buddy = (GaimBuddy *) node; | |
847 gc = gaim_account_get_connection(buddy->account); | |
848 js = gc->proto_data; | |
849 | |
850 jabber_buddy_set_invisibility(js, buddy->name, TRUE); | |
7014 | 851 } |
852 | |
9030 | 853 static void jabber_buddy_make_visible(GaimBlistNode *node, gpointer data) |
7014 | 854 { |
9030 | 855 GaimBuddy *buddy; |
856 GaimConnection *gc; | |
857 JabberStream *js; | |
7014 | 858 |
9030 | 859 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); |
7014 | 860 |
9030 | 861 buddy = (GaimBuddy *) node; |
862 gc = gaim_account_get_connection(buddy->account); | |
863 js = gc->proto_data; | |
864 | |
865 jabber_buddy_set_invisibility(js, buddy->name, FALSE); | |
7014 | 866 } |
867 | |
9030 | 868 static void jabber_buddy_cancel_presence_notification(GaimBlistNode *node, |
869 gpointer data) | |
7014 | 870 { |
9030 | 871 GaimBuddy *buddy; |
872 GaimConnection *gc; | |
873 JabberStream *js; | |
874 | |
875 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
7014 | 876 |
9030 | 877 buddy = (GaimBuddy *) node; |
878 gc = gaim_account_get_connection(buddy->account); | |
879 js = gc->proto_data; | |
880 | |
881 /* I wonder if we should prompt the user before doing this */ | |
882 jabber_presence_subscription_set(js, buddy->name, "unsubscribed"); | |
7014 | 883 } |
884 | |
9030 | 885 static void jabber_buddy_rerequest_auth(GaimBlistNode *node, gpointer data) |
7250 | 886 { |
9030 | 887 GaimBuddy *buddy; |
888 GaimConnection *gc; | |
889 JabberStream *js; | |
890 | |
891 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
7250 | 892 |
9030 | 893 buddy = (GaimBuddy *) node; |
894 gc = gaim_account_get_connection(buddy->account); | |
895 js = gc->proto_data; | |
896 | |
897 jabber_presence_subscription_set(js, buddy->name, "subscribe"); | |
7250 | 898 } |
899 | |
9030 | 900 |
901 static void jabber_buddy_unsubscribe(GaimBlistNode *node, gpointer data) | |
7014 | 902 { |
9030 | 903 GaimBuddy *buddy; |
904 GaimConnection *gc; | |
905 JabberStream *js; | |
906 | |
907 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
908 | |
909 buddy = (GaimBuddy *) node; | |
910 gc = gaim_account_get_connection(buddy->account); | |
911 js = gc->proto_data; | |
912 | |
913 jabber_presence_subscription_set(js, buddy->name, "unsubscribe"); | |
914 } | |
915 | |
916 | |
917 GList *jabber_buddy_menu(GaimBuddy *buddy) | |
918 { | |
919 GaimConnection *gc = gaim_account_get_connection(buddy->account); | |
920 JabberStream *js = gc->proto_data; | |
921 JabberBuddy *jb = jabber_buddy_find(js, buddy->name, TRUE); | |
922 | |
7014 | 923 GList *m = NULL; |
9030 | 924 GaimBlistNodeAction *act; |
7395 | 925 |
926 if(!jb) | |
927 return m; | |
928 | |
9030 | 929 act = gaim_blist_node_action_new(_("Send File"), |
930 jabber_si_xfer_ask_send, NULL); | |
931 m = g_list_append(m, act); | |
7395 | 932 |
8185 | 933 /* XXX: fix the NOT ME below */ |
934 | |
935 if(js->protocol_version == JABBER_PROTO_0_9 /* && NOT ME */) { | |
8166 | 936 if(jb->invisible & JABBER_INVIS_BUDDY) { |
9030 | 937 act = gaim_blist_node_action_new(_("Un-hide From"), |
938 jabber_buddy_make_visible, NULL); | |
8166 | 939 } else { |
9030 | 940 act = gaim_blist_node_action_new(_("Temporarily Hide From"), |
941 jabber_buddy_make_invisible, NULL); | |
8166 | 942 } |
9030 | 943 m = g_list_append(m, act); |
7014 | 944 } |
945 | |
8185 | 946 if(jb->subscription & JABBER_SUB_FROM /* && NOT ME */) { |
9030 | 947 act = gaim_blist_node_action_new(_("Cancel Presence Notification"), |
948 jabber_buddy_cancel_presence_notification, NULL); | |
949 m = g_list_append(m, act); | |
7014 | 950 } |
951 | |
952 if(!(jb->subscription & JABBER_SUB_TO)) { | |
9030 | 953 act = gaim_blist_node_action_new(_("(Re-)Request authorization"), |
954 jabber_buddy_rerequest_auth, NULL); | |
955 m = g_list_append(m, act); | |
956 | |
8185 | 957 } else /* if(NOT ME) */{ |
9030 | 958 |
959 /* shouldn't this just happen automatically when the buddy is | |
960 removed? */ | |
961 act = gaim_blist_node_action_new(_("Unsubscribe"), | |
962 jabber_buddy_unsubscribe, NULL); | |
963 m = g_list_append(m, act); | |
7014 | 964 } |
965 | |
966 return m; | |
967 } | |
9030 | 968 |
969 GList * | |
970 jabber_blist_node_menu(GaimBlistNode *node) | |
971 { | |
972 if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
973 return jabber_buddy_menu((GaimBuddy *) node); | |
974 } else { | |
975 return NULL; | |
976 } | |
977 } | |
978 | |
979 |