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