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