Mercurial > pidgin
annotate src/protocols/jabber/jabber.c @ 6036:547ba881bc7e
[gaim-migrate @ 6486]
Fix the --login=[NAME] command line argument.
Fix the password prompt when signing on an account with no password set. I
made some similar changes that probably fix problems with the filectl plugin,
using gaim-remote to sign on an account, and signing on an account via perl
script. (The change is calling gaim_account_connect() instead of
serv_login().)
Fix a silly compiler warning.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 05 Jul 2003 22:24:57 +0000 |
parents | 3b4f94adc7d4 |
children | d8cd876e613e |
rev | line source |
---|---|
2086 | 1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ |
2 /* | |
3 * gaim | |
4 * | |
5 * Some code copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
6 * libfaim code copyright 1998, 1999 Adam Fritzler <afritz@auk.cx> | |
7 * | |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * This program is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 * GNU General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program; if not, write to the Free Software | |
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
20 * | |
21 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
22 #include "internal.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
23 |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
24 #ifdef _WIN32 |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
25 # include "utsname.h" |
2086 | 26 #endif |
27 | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
28 #include "account.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
29 #include "accountopt.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
30 #include "conversation.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
31 #include "debug.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
32 #include "ft.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
33 #include "multi.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
34 #include "notify.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
35 #include "prpl.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
36 #include "request.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
37 #include "util.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
38 |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
39 /* XXX */ |
4608 | 40 #include "gaim.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
41 |
2232
14e8978f86bb
[gaim-migrate @ 2242]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2231
diff
changeset
|
42 #ifdef MAX |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
43 # undef MAX |
2232
14e8978f86bb
[gaim-migrate @ 2242]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2231
diff
changeset
|
44 #endif |
14e8978f86bb
[gaim-migrate @ 2242]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2231
diff
changeset
|
45 #ifdef MIN |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
46 # undef MIN |
2232
14e8978f86bb
[gaim-migrate @ 2242]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2231
diff
changeset
|
47 #endif |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
48 |
2086 | 49 #include "jabber.h" |
50 #include "proxy.h" | |
51 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
52 static GaimPlugin *my_protocol = NULL; |
4249 | 53 |
2086 | 54 /* The priv member of gjconn's is a gaim_connection for now. */ |
5572 | 55 #define GJ_GC(x) ((GaimConnection *)(x)->priv) |
4249 | 56 /* Confused? That makes three of us. -Robot101 */ |
57 #define GC_GJ(x) ((gjconn)((struct jabber_data *)(x)->proto_data)->gjc) | |
2086 | 58 |
5894 | 59 #define JABBER_CONNECT_STEPS 5 |
5572 | 60 |
2086 | 61 #define IQID_AUTH "__AUTH__" |
62 | |
63 #define IQ_NONE -1 | |
64 #define IQ_AUTH 0 | |
65 #define IQ_ROSTER 1 | |
66 | |
3259 | 67 #define UC_AWAY (0x02 | UC_UNAVAILABLE) |
68 #define UC_CHAT 0x04 | |
69 #define UC_XA (0x08 | UC_UNAVAILABLE) | |
70 #define UC_DND (0x10 | UC_UNAVAILABLE) | |
71 #define UC_ERROR (0x20 | UC_UNAVAILABLE) | |
2086 | 72 |
4917 | 73 #define DEFAULT_SERVER "jabber.org" |
2086 | 74 #define DEFAULT_GROUPCHAT "conference.jabber.org" |
75 #define DEFAULT_PORT 5222 | |
76 | |
77 #define USEROPT_PORT 0 | |
4436 | 78 #define USEROPT_CONN_SERVER 1 |
2086 | 79 |
3311 | 80 #define JABBER_TYPING_NOTIFY_INT 15 /* Delay (in seconds) between sending typing notifications */ |
81 | |
4450 | 82 #define JABBER_KEEPALIVE_STRING " \t " |
83 | |
3074 | 84 /* |
85 * Note: "was_connected" may seem redundant, but it was needed and I | |
86 * didn't want to touch the Jabber state stuff not specific to Gaim. | |
87 */ | |
2086 | 88 typedef struct gjconn_struct { |
89 /* Core structure */ | |
90 pool p; /* Memory allocation pool */ | |
91 int state; /* Connection state flag */ | |
3074 | 92 int was_connected; /* We were once connected */ |
2086 | 93 int fd; /* Connection file descriptor */ |
94 jid user; /* User info */ | |
95 char *pass; /* User passwd */ | |
96 | |
97 /* Stream stuff */ | |
98 int id; /* id counter for jab_getid() function */ | |
99 char idbuf[9]; /* temporary storage for jab_getid() */ | |
100 char *sid; /* stream id from server, for digest auth */ | |
101 XML_Parser parser; /* Parser instance */ | |
102 xmlnode current; /* Current node in parsing instance.. */ | |
103 | |
104 /* Event callback ptrs */ | |
2956 | 105 void (*on_state)(struct gjconn_struct *gjc, int state); |
106 void (*on_packet)(struct gjconn_struct *gjc, jpacket p); | |
107 | |
108 GHashTable *queries; /* query tracker */ | |
2086 | 109 |
110 void *priv; | |
111 | |
112 } *gjconn, gjconn_struct; | |
113 | |
2956 | 114 typedef void (*gjconn_state_h)(gjconn gjc, int state); |
115 typedef void (*gjconn_packet_h)(gjconn gjc, jpacket p); | |
2086 | 116 |
117 static gjconn gjab_new(char *user, char *pass, void *priv); | |
2956 | 118 static void gjab_delete(gjconn gjc); |
119 static void gjab_state_handler(gjconn gjc, gjconn_state_h h); | |
120 static void gjab_packet_handler(gjconn gjc, gjconn_packet_h h); | |
121 static void gjab_start(gjconn gjc); | |
122 static void gjab_stop(gjconn gjc); | |
2086 | 123 /* |
2956 | 124 static int gjab_getfd(gjconn gjc); |
125 static jid gjab_getjid(gjconn gjc); | |
126 static char *gjab_getsid(gjconn gjc); | |
2086 | 127 */ |
2956 | 128 static char *gjab_getid(gjconn gjc); |
129 static void gjab_send(gjconn gjc, xmlnode x); | |
130 static void gjab_send_raw(gjconn gjc, const char *str); | |
131 static void gjab_recv(gjconn gjc); | |
132 static void gjab_auth(gjconn gjc); | |
133 | |
134 /* | |
135 * It is *this* to which we point the gaim_connection proto_data | |
136 */ | |
2086 | 137 struct jabber_data { |
2956 | 138 gjconn gjc; |
2086 | 139 gboolean did_import; |
2956 | 140 GSList *chats; |
2086 | 141 time_t idle; |
3311 | 142 GHashTable *buddies; |
3630 | 143 GSList *file_transfers; |
2086 | 144 }; |
145 | |
2956 | 146 /* |
3340 | 147 * Used in jabber_buddy_data.invisible, below |
148 */ | |
149 #define JABBER_NOT_INVIS 0x00 | |
150 #define JABBER_SERV_INVIS 0x01 /* Invisible set on server */ | |
151 #define JABBER_BUD_INVIS 0x02 /* Invisible set on buddy */ | |
152 | |
153 /* | |
4927 | 154 * Used in jabber_buddy_data.subscription, below |
155 */ | |
156 #define JABBER_SUB_NONE 0x0 | |
157 #define JABBER_SUB_PENDING 0x1 | |
158 #define JABBER_SUB_TO 0x2 | |
159 #define JABBER_SUB_FROM 0x4 | |
160 #define JABBER_SUB_BOTH (JABBER_SUB_TO | JABBER_SUB_FROM) | |
161 | |
162 | |
163 /* | |
3311 | 164 * It is *this* to which we point the buddy proto_data |
165 */ | |
166 struct jabber_buddy_data { | |
167 GSList *resources; | |
168 char *error_msg; | |
3340 | 169 unsigned invisible; /* We've set presence type invisible for this buddy */ |
4927 | 170 unsigned subscription; /* subscription type for this buddy */ |
3311 | 171 }; |
172 | |
173 /* | |
174 * per-resource info | |
175 */ | |
176 typedef struct jabber_resource_info { | |
3770 | 177 char *name; |
3311 | 178 int priority; |
179 int state; | |
180 char *away_msg; | |
181 char *thread_id; | |
182 gboolean has_composing; | |
5093 | 183 gboolean has_xhtml; |
3311 | 184 } *jab_res_info; |
185 | |
186 /* | |
187 * For our own jid handling | |
188 * | |
189 * We do our own so we can cleanly parse buddy names | |
190 * (user@server/resource) and rid ourselves of the | |
191 * struct when we're done with it. The Jabber lib | |
192 * structs last the life of the pool--we frequently | |
193 * don't want that. | |
194 * | |
195 * We use the real jid structs so we can make use of | |
196 * jid_safe(), jid_cmp() and some others. | |
197 * | |
198 * BE CAREFUL using the Jabber lib routines. | |
199 * Many of them assume pool use and are not | |
200 * amenable to use with our own! | |
201 * | |
202 * We give them special names so we know, throughout | |
203 * the code, that they're not alloc'd out of pool | |
204 * memory and we can, and must, dispose of them when | |
205 * we're done with 'em. | |
206 */ | |
207 #define gaim_jid_struct jid_struct | |
208 typedef struct gaim_jid_struct *gaim_jid; | |
209 | |
210 /* | |
2956 | 211 * Jabber "chat group" info. Pointers to these go in jabber_data |
212 * pending and existing chats lists. | |
213 */ | |
2086 | 214 struct jabber_chat { |
3311 | 215 gaim_jid gjid; |
5572 | 216 GaimConnection *gc; |
5679 | 217 GaimConversation *b; |
2086 | 218 int id; |
2956 | 219 int state; |
2086 | 220 }; |
221 | |
2956 | 222 /* |
223 * Jabber chat states... | |
224 * | |
225 * Note: due to a bug in one version of the Jabber server, subscriptions | |
226 * to chat groups aren't (always?) properly removed at the server. The | |
227 * result is clients receive Jabber "presence" notifications for JIDs | |
228 * they no longer care about. The problem with such vestigial notifies is | |
229 * that we really have no way of telling if it's vestigial or if it's a | |
230 * valid "buddy" presence notification. So we keep jabber_chat structs | |
231 * around after leaving a chat group and simply mark them "closed." That | |
232 * way we can test for such errant presence notifications. I.e.: if we | |
233 * get a presence notfication from a JID that matches a chat group JID, | |
234 * we disregard it. | |
235 */ | |
236 #define JCS_PENDING 1 /* pending */ | |
237 #define JCS_ACTIVE 2 /* active */ | |
238 #define JCS_CLOSED 3 /* closed */ | |
239 | |
240 | |
241 #define STATE_EVT(arg) if(gjc->on_state) { (gjc->on_state)(gjc, (arg) ); } | |
242 | |
243 static void jabber_handlevcard(gjconn, xmlnode, char *); | |
2086 | 244 |
3630 | 245 static char *jabber_normalize(const char *s); |
246 | |
2086 | 247 static char *create_valid_jid(const char *given, char *server, char *resource) |
248 { | |
249 char *valid; | |
4927 | 250 char *tmp; |
251 | |
252 if (!(tmp = strchr(given, '@'))) | |
2086 | 253 valid = g_strdup_printf("%s@%s/%s", given, server, resource); |
4927 | 254 else if (!strchr(tmp, '/')) |
2086 | 255 valid = g_strdup_printf("%s/%s", given, resource); |
256 else | |
257 valid = g_strdup(given); | |
258 | |
259 return valid; | |
260 } | |
261 | |
4915 | 262 |
3311 | 263 /* |
264 * Dispose of a gaim_jid_struct | |
265 */ | |
266 static void gaim_jid_free(gaim_jid gjid) | |
267 { | |
268 if(gjid) { | |
269 if(gjid->resource) | |
270 free(gjid->resource); | |
271 if(gjid->user) | |
272 free(gjid->user); | |
273 if(gjid->server) | |
274 free(gjid->server); | |
275 if(gjid->full) | |
276 free(gjid->full); | |
277 free(gjid); | |
278 } | |
279 } | |
280 | |
281 /* | |
282 * Create a new gjid struct | |
283 * | |
284 * Unlike jid_new(), also creates "full." | |
285 * | |
286 * Shamelessly copied, in part, from jid.c: jid_new() | |
287 * | |
288 * Caller is responsible for freeing the space allocated by this via | |
289 * gaim_jid_free(). | |
290 * | |
291 * JFIXME: Has a local declaration for jid.c:jid_safe(). I've put in a | |
292 * request to have that added to libjabber's lib.h file. (JSeymour) | |
293 */ | |
294 static gaim_jid gaim_jid_new(char *name) | |
295 { | |
296 extern jid jid_safe(jid); /* *retch* */ | |
297 | |
298 gaim_jid gjid = NULL; | |
299 | |
300 if(name && strlen(name)) { | |
301 char *server, *resource, *type, *str; | |
302 int full_len = 0; | |
303 | |
304 /* user@server/resource */ | |
305 | |
306 str = strdup(name); /* we mangle a copy */ | |
307 | |
308 gjid = calloc(1, sizeof(struct gaim_jid_struct)); | |
309 | |
310 if((resource = strstr(str, "/")) != NULL) { | |
311 *resource = '\0'; | |
312 ++resource; | |
313 if((full_len = strlen(resource)) > 0) { | |
314 gjid->resource = strdup(resource); | |
315 ++full_len; /* for later "/" addition */ | |
316 } | |
317 } else { | |
318 resource = str + strlen(str); /* point to end */ | |
319 } | |
320 | |
321 type = strstr(str, ":"); | |
322 if(type != NULL && type < resource) { | |
323 *type = '\0'; | |
324 ++type; | |
325 str = type; /* ignore the type: prefix */ | |
326 } | |
327 | |
328 server = strstr(str, "@"); | |
329 | |
330 /* | |
331 * if there's no @, it's just the server address | |
332 */ | |
333 if(server == NULL || server > resource) { | |
334 gjid->server = strdup(str); | |
335 full_len += strlen(str); | |
336 } else { | |
337 *server = '\0'; | |
338 ++server; | |
339 gjid->server = strdup(server); | |
340 full_len += strlen(server) + 1; /* account for later "@" */ | |
341 if(strlen(str) > 0) { | |
342 gjid->user = strdup(str); | |
343 full_len += strlen(str); | |
344 } | |
345 } | |
346 | |
347 free(str); | |
348 | |
349 if(!jid_safe(gjid)) { | |
350 gaim_jid_free(gjid); | |
351 gjid = NULL; | |
352 } else { | |
353 if(full_len) { | |
354 char *s = gjid->full = malloc(++full_len); | |
355 | |
356 if(gjid->user) { | |
357 strcpy(s, gjid->user); | |
358 s += strlen(gjid->user); | |
359 } | |
360 if(gjid->server) { | |
361 if(s > gjid->full) | |
362 *(s++) = '@'; | |
363 strcpy(s, gjid->server); | |
364 s += strlen(gjid->server); | |
365 } | |
366 if(gjid->resource) { | |
367 *(s++) = '/'; | |
368 strcpy(s, gjid->resource); | |
369 } | |
370 } | |
371 } | |
372 } | |
373 | |
374 return gjid; | |
375 } | |
376 | |
377 /* | |
378 * Get a "username@server" from unadorned "username" | |
379 * | |
380 * If there's no "@server" part and "who" doesn't match the | |
381 * gjconn server (which would indicate that "who" *is* the | |
382 * server in case of server messages), the gjconn server is | |
383 * appended. | |
384 * | |
385 * If incl_resource is TRUE (non-0), the returned string | |
386 * includes the "/resource" part (if it exists), otherwise not. | |
387 * | |
388 * Allocates space for returned string. Caller is | |
389 * responsible for freeing it with g_free(). | |
390 * | |
391 * If "gjid" is non-null, sets that as well. Caller is | |
392 * reponsible for freeing that via gaim_jid_free() when done | |
393 * with it. | |
394 */ | |
3466 | 395 static gchar *get_realwho(gjconn gjc, const char *who, int incl_resource, gaim_jid *gjid) |
3311 | 396 { |
397 gaim_jid my_gjid; | |
398 gchar *my_who; | |
399 gchar *realwho = NULL; | |
400 | |
401 if(!(who && who[0])) { | |
402 return NULL; | |
403 } | |
404 | |
405 /* | |
406 * Bare username and "username" not the server itself? | |
407 */ | |
408 if(!strchr(who, '@') && strcasecmp(who, gjc->user->server)) { | |
409 my_who = g_strdup_printf("%s@%s", who, gjc->user->server); | |
410 } else { | |
411 my_who = g_strdup(who); | |
412 } | |
413 | |
414 if((my_gjid = gaim_jid_new(my_who)) != NULL) { | |
415 /* | |
416 * If there's no "user" part, "who" was just the server or perhaps a transport (?) | |
417 */ | |
418 if(my_gjid->user) { | |
419 /* | |
420 * Include "/resource" bit? | |
421 */ | |
422 if(incl_resource) { | |
423 realwho = g_strdup(my_gjid->full); | |
424 } else { | |
425 realwho = g_strdup_printf("%s@%s", my_gjid->user, my_gjid->server); | |
426 } | |
427 } else { | |
428 realwho = g_strdup(my_gjid->server); | |
429 } | |
430 } | |
431 | |
432 g_free(my_who); | |
433 | |
434 if(gjid) { | |
435 *gjid = my_gjid; | |
436 } else { | |
437 gaim_jid_free(my_gjid); | |
438 } | |
439 | |
440 return realwho; | |
441 } | |
442 | |
2086 | 443 static gjconn gjab_new(char *user, char *pass, void *priv) |
444 { | |
445 pool p; | |
2956 | 446 gjconn gjc; |
2086 | 447 |
448 if (!user) | |
449 return (NULL); | |
450 | |
451 p = pool_new(); | |
452 if (!p) | |
453 return (NULL); | |
2956 | 454 gjc = pmalloc_x(p, sizeof(gjconn_struct), 0); |
455 if (!gjc) { | |
456 pool_free(p); /* no need for this anymore! */ | |
2086 | 457 return (NULL); |
2956 | 458 } |
459 gjc->p = p; | |
460 | |
3236 | 461 if((gjc->user = jid_new(p, user)) == NULL) { |
462 pool_free(p); /* no need for this anymore! */ | |
463 return (NULL); | |
464 } | |
3257 | 465 |
466 gjc->pass = strdup(pass); | |
2956 | 467 |
468 gjc->state = JCONN_STATE_OFF; | |
3074 | 469 gjc->was_connected = 0; |
2956 | 470 gjc->id = 1; |
471 gjc->fd = -1; | |
472 | |
473 gjc->priv = priv; | |
474 | |
475 return gjc; | |
2086 | 476 } |
477 | |
2956 | 478 static void gjab_delete(gjconn gjc) |
2086 | 479 { |
2956 | 480 if (!gjc) |
2086 | 481 return; |
482 | |
2956 | 483 gjab_stop(gjc); |
3257 | 484 free(gjc->pass); |
2956 | 485 pool_free(gjc->p); |
2086 | 486 } |
487 | |
2956 | 488 static void gjab_state_handler(gjconn gjc, gjconn_state_h h) |
2086 | 489 { |
2956 | 490 if (!gjc) |
2086 | 491 return; |
492 | |
2956 | 493 gjc->on_state = h; |
2086 | 494 } |
495 | |
2956 | 496 static void gjab_packet_handler(gjconn gjc, gjconn_packet_h h) |
2086 | 497 { |
2956 | 498 if (!gjc) |
2086 | 499 return; |
500 | |
2956 | 501 gjc->on_packet = h; |
2086 | 502 } |
503 | |
2956 | 504 static void gjab_stop(gjconn gjc) |
2086 | 505 { |
2956 | 506 if (!gjc || gjc->state == JCONN_STATE_OFF) |
2086 | 507 return; |
508 | |
2956 | 509 gjab_send_raw(gjc, "</stream:stream>"); |
510 gjc->state = JCONN_STATE_OFF; | |
3074 | 511 gjc->was_connected = 0; |
2956 | 512 close(gjc->fd); |
513 gjc->fd = -1; | |
514 XML_ParserFree(gjc->parser); | |
515 gjc->parser = NULL; | |
2086 | 516 } |
517 | |
518 /* | |
2956 | 519 static int gjab_getfd(gjconn gjc) |
2086 | 520 { |
2956 | 521 if (gjc) |
522 return gjc->fd; | |
2086 | 523 else |
524 return -1; | |
525 } | |
526 | |
2956 | 527 static jid gjab_getjid(gjconn gjc) |
2086 | 528 { |
2956 | 529 if (gjc) |
530 return (gjc->user); | |
2086 | 531 else |
532 return NULL; | |
533 } | |
534 | |
2956 | 535 static char *gjab_getsid(gjconn gjc) |
2086 | 536 { |
2956 | 537 if (gjc) |
538 return (gjc->sid); | |
2086 | 539 else |
540 return NULL; | |
541 } | |
542 */ | |
543 | |
2956 | 544 static char *gjab_getid(gjconn gjc) |
2086 | 545 { |
2956 | 546 snprintf(gjc->idbuf, 8, "%d", gjc->id++); |
547 return &gjc->idbuf[0]; | |
2086 | 548 } |
549 | |
2956 | 550 static void gjab_send(gjconn gjc, xmlnode x) |
2086 | 551 { |
2956 | 552 if (gjc && gjc->state != JCONN_STATE_OFF) { |
2086 | 553 char *buf = xmlnode2str(x); |
554 if (buf) | |
3630 | 555 #ifndef _WIN32 |
2956 | 556 write(gjc->fd, buf, strlen(buf)); |
3630 | 557 #else |
558 send(gjc->fd, buf, strlen(buf), 0); | |
559 #endif | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
560 gaim_debug(GAIM_DEBUG_MISC, "jabber", "gjab_send: %s\n", buf); |
2086 | 561 } |
562 } | |
563 | |
2956 | 564 static void gjab_send_raw(gjconn gjc, const char *str) |
2086 | 565 { |
2956 | 566 if (gjc && gjc->state != JCONN_STATE_OFF) { |
567 /* | |
568 * JFIXME: No error detection?!?! | |
569 */ | |
3630 | 570 #ifndef _WIN32 |
2956 | 571 if(write(gjc->fd, str, strlen(str)) < 0) { |
3630 | 572 #else |
573 if(send(gjc->fd, str, strlen(str), 0) < 0) { | |
574 #endif | |
2956 | 575 fprintf(stderr, "DBG: Problem sending. Error: %d\n", errno); |
576 fflush(stderr); | |
577 } | |
4450 | 578 /* printing keepalives to the debug window is really annoying */ |
579 if(strcmp(str, JABBER_KEEPALIVE_STRING)) | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
580 gaim_debug(GAIM_DEBUG_MISC, "jabber", "gjab_send_raw: %s\n", str); |
2086 | 581 } |
582 } | |
583 | |
2956 | 584 static void gjab_reqroster(gjconn gjc) |
2086 | 585 { |
586 xmlnode x; | |
587 | |
588 x = jutil_iqnew(JPACKET__GET, NS_ROSTER); | |
2956 | 589 xmlnode_put_attrib(x, "id", gjab_getid(gjc)); |
590 | |
591 gjab_send(gjc, x); | |
2086 | 592 xmlnode_free(x); |
593 } | |
594 | |
2956 | 595 static void gjab_reqauth(gjconn gjc) |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
596 { |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
597 xmlnode x, y, z; |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
598 char *user; |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
599 |
2956 | 600 if (!gjc) |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
601 return; |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
602 |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
603 x = jutil_iqnew(JPACKET__GET, NS_AUTH); |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
604 xmlnode_put_attrib(x, "id", IQID_AUTH); |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
605 y = xmlnode_get_tag(x, "query"); |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
606 |
2956 | 607 user = gjc->user->user; |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
608 |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
609 if (user) { |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
610 z = xmlnode_insert_tag(y, "username"); |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
611 xmlnode_insert_cdata(z, user, -1); |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
612 } |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
613 |
2956 | 614 gjab_send(gjc, x); |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
615 xmlnode_free(x); |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
616 } |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
617 |
2956 | 618 static void gjab_auth(gjconn gjc) |
2086 | 619 { |
620 xmlnode x, y, z; | |
621 char *hash, *user; | |
622 | |
2956 | 623 if (!gjc) |
2086 | 624 return; |
625 | |
626 x = jutil_iqnew(JPACKET__SET, NS_AUTH); | |
627 xmlnode_put_attrib(x, "id", IQID_AUTH); | |
628 y = xmlnode_get_tag(x, "query"); | |
629 | |
2956 | 630 user = gjc->user->user; |
2086 | 631 |
632 if (user) { | |
633 z = xmlnode_insert_tag(y, "username"); | |
634 xmlnode_insert_cdata(z, user, -1); | |
635 } | |
636 | |
637 z = xmlnode_insert_tag(y, "resource"); | |
2956 | 638 xmlnode_insert_cdata(z, gjc->user->resource, -1); |
639 | |
640 if (gjc->sid) { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
641 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
642 "digest authentication (sid %s)\n", gjc->sid); |
2086 | 643 z = xmlnode_insert_tag(y, "digest"); |
2956 | 644 hash = pmalloc(x->p, strlen(gjc->sid) + strlen(gjc->pass) + 1); |
645 strcpy(hash, gjc->sid); | |
646 strcat(hash, gjc->pass); | |
2086 | 647 hash = shahash(hash); |
648 xmlnode_insert_cdata(z, hash, 40); | |
649 } else { | |
650 z = xmlnode_insert_tag(y, "password"); | |
2956 | 651 xmlnode_insert_cdata(z, gjc->pass, -1); |
2086 | 652 } |
653 | |
2956 | 654 gjab_send(gjc, x); |
2086 | 655 xmlnode_free(x); |
656 | |
657 return; | |
658 } | |
659 | |
2956 | 660 static void gjab_recv(gjconn gjc) |
2086 | 661 { |
662 static char buf[4096]; | |
663 int len; | |
664 | |
2956 | 665 if (!gjc || gjc->state == JCONN_STATE_OFF) |
2086 | 666 return; |
3630 | 667 #ifndef _WIN32 |
3234 | 668 if ((len = read(gjc->fd, buf, sizeof(buf) - 1)) > 0) { |
3630 | 669 #else |
670 if ((len = recv(gjc->fd, buf, sizeof(buf) - 1, 0)) > 0) { | |
671 #endif | |
2086 | 672 buf[len] = '\0'; |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
673 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
674 "input (len %d): %s\n", len, buf); |
2956 | 675 XML_Parse(gjc->parser, buf, len, 0); |
3105 | 676 } else if (len < 0 || errno != EAGAIN) { |
2086 | 677 STATE_EVT(JCONN_STATE_OFF) |
678 } | |
679 } | |
680 | |
681 static void startElement(void *userdata, const char *name, const char **attribs) | |
682 { | |
683 xmlnode x; | |
2956 | 684 gjconn gjc = (gjconn) userdata; |
685 | |
686 if (gjc->current) { | |
2086 | 687 /* Append the node to the current one */ |
2956 | 688 x = xmlnode_insert_tag(gjc->current, name); |
2086 | 689 xmlnode_put_expat_attribs(x, attribs); |
690 | |
2956 | 691 gjc->current = x; |
2086 | 692 } else { |
693 x = xmlnode_new_tag(name); | |
694 xmlnode_put_expat_attribs(x, attribs); | |
695 if (strcmp(name, "stream:stream") == 0) { | |
696 /* special case: name == stream:stream */ | |
697 /* id attrib of stream is stored for digest auth */ | |
2956 | 698 gjc->sid = g_strdup(xmlnode_get_attrib(x, "id")); |
2086 | 699 /* STATE_EVT(JCONN_STATE_AUTH) */ |
2635
8c75e59e4bdf
[gaim-migrate @ 2648]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2607
diff
changeset
|
700 xmlnode_free(x); |
2086 | 701 } else { |
2956 | 702 gjc->current = x; |
2086 | 703 } |
704 } | |
705 } | |
706 | |
707 static void endElement(void *userdata, const char *name) | |
708 { | |
2956 | 709 gjconn gjc = (gjconn) userdata; |
2086 | 710 xmlnode x; |
711 jpacket p; | |
712 | |
2956 | 713 if (gjc->current == NULL) { |
2086 | 714 /* we got </stream:stream> */ |
715 STATE_EVT(JCONN_STATE_OFF) | |
716 return; | |
717 } | |
718 | |
2956 | 719 x = xmlnode_get_parent(gjc->current); |
2086 | 720 |
721 if (!x) { | |
722 /* it is time to fire the event */ | |
2956 | 723 p = jpacket_new(gjc->current); |
724 | |
725 if (gjc->on_packet) | |
726 (gjc->on_packet) (gjc, p); | |
2086 | 727 else |
2956 | 728 xmlnode_free(gjc->current); |
2086 | 729 } |
730 | |
2956 | 731 gjc->current = x; |
2086 | 732 } |
733 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
734 static void jabber_callback(gpointer data, gint source, GaimInputCondition condition) |
2086 | 735 { |
5572 | 736 GaimConnection *gc = data; |
2086 | 737 struct jabber_data *jd = (struct jabber_data *)gc->proto_data; |
738 | |
2956 | 739 gjab_recv(jd->gjc); |
2086 | 740 } |
741 | |
742 static void charData(void *userdata, const char *s, int slen) | |
743 { | |
2956 | 744 gjconn gjc = (gjconn) userdata; |
745 | |
746 if (gjc->current) | |
747 xmlnode_insert_cdata(gjc->current, s, slen); | |
2086 | 748 } |
749 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
750 static void gjab_connected(gpointer data, gint source, GaimInputCondition cond) |
2086 | 751 { |
752 xmlnode x; | |
753 char *t, *t2; | |
5572 | 754 GaimConnection *gc = data; |
2086 | 755 struct jabber_data *jd; |
2956 | 756 gjconn gjc; |
2086 | 757 |
5578
847ad796326d
[gaim-migrate @ 5982]
Christian Hammond <chipx86@chipx86.com>
parents:
5572
diff
changeset
|
758 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 759 close(source); |
760 return; | |
761 } | |
762 | |
763 jd = gc->proto_data; | |
2956 | 764 gjc = jd->gjc; |
765 | |
4366 | 766 gjc->fd = source; |
2300
d2686f757d6e
[gaim-migrate @ 2310]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2289
diff
changeset
|
767 |
2086 | 768 if (source == -1) { |
769 STATE_EVT(JCONN_STATE_OFF) | |
770 return; | |
771 } | |
772 | |
2956 | 773 gjc->state = JCONN_STATE_CONNECTED; |
2086 | 774 STATE_EVT(JCONN_STATE_CONNECTED) |
775 | |
776 /* start stream */ | |
2956 | 777 x = jutil_header(NS_CLIENT, gjc->user->server); |
2086 | 778 t = xmlnode2str(x); |
779 /* this is ugly, we can create the string here instead of jutil_header */ | |
780 /* what do you think about it? -madcat */ | |
781 t2 = strstr(t, "/>"); | |
782 *t2++ = '>'; | |
783 *t2 = '\0'; | |
2956 | 784 gjab_send_raw(gjc, "<?xml version='1.0'?>"); |
785 gjab_send_raw(gjc, t); | |
2086 | 786 xmlnode_free(x); |
787 | |
2956 | 788 gjc->state = JCONN_STATE_ON; |
2086 | 789 STATE_EVT(JCONN_STATE_ON); |
790 | |
2956 | 791 gc = GJ_GC(gjc); |
792 gc->inpa = gaim_input_add(gjc->fd, GAIM_INPUT_READ, jabber_callback, gc); | |
2086 | 793 } |
794 | |
2956 | 795 static void gjab_start(gjconn gjc) |
2086 | 796 { |
5572 | 797 GaimAccount *account; |
4366 | 798 int port, rc; |
5613 | 799 const char *connect_server; |
5572 | 800 const char *server; |
2086 | 801 |
2956 | 802 if (!gjc || gjc->state != JCONN_STATE_OFF) |
2086 | 803 return; |
804 | |
4491 | 805 account = GJ_GC(gjc)->account; |
5572 | 806 port = gaim_account_get_int(account, "port", DEFAULT_PORT); |
5613 | 807 connect_server = gaim_account_get_string(account, "connect_server", ""); |
808 server = connect_server[0] ? connect_server : gjc->user->server; | |
809 | |
2086 | 810 |
2956 | 811 gjc->parser = XML_ParserCreate(NULL); |
812 XML_SetUserData(gjc->parser, (void *)gjc); | |
813 XML_SetElementHandler(gjc->parser, startElement, endElement); | |
814 XML_SetCharacterDataHandler(gjc->parser, charData); | |
815 | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
816 rc = gaim_proxy_connect(account, server, port, gjab_connected, GJ_GC(gjc)); |
4491 | 817 if (!account->gc || (rc != 0)) { |
2086 | 818 STATE_EVT(JCONN_STATE_OFF) |
819 return; | |
820 } | |
821 } | |
822 | |
2956 | 823 /* |
824 * Find chat by chat group name | |
825 */ | |
5679 | 826 static GaimConversation *find_chat(GaimConnection *gc, char *name) |
2086 | 827 { |
828 GSList *bcs = gc->buddy_chats; | |
5679 | 829 GaimConversation *b = NULL; |
2086 | 830 char *chat = g_strdup(normalize(name)); |
831 | |
832 while (bcs) { | |
833 b = bcs->data; | |
834 if (!strcasecmp(normalize(b->name), chat)) | |
835 break; | |
836 b = NULL; | |
837 bcs = bcs->next; | |
838 } | |
839 | |
840 g_free(chat); | |
841 return b; | |
842 } | |
843 | |
2956 | 844 /* |
845 * Find chat by "chat id" | |
846 * | |
847 * Returns: 0 on success and jabber_chat pointer set | |
848 * or -EINVAL on error and jabber_chat pointer is | |
849 * undefined. | |
850 * | |
851 * TBD: Slogging through the buddy_chats list seems | |
852 * redundant since the chat i.d. is mirrored in the | |
853 * jabber_chat struct list. But that's the way it | |
854 * was, so that's the way I'm leaving it--for now. | |
855 */ | |
5572 | 856 static int jabber_find_chat_by_convo_id(GaimConnection *gc, int id, struct jabber_chat **jc) |
2086 | 857 { |
2956 | 858 GSList *bcs = gc->buddy_chats; |
5679 | 859 GaimConversation *b = NULL; |
2956 | 860 struct jabber_data *jd = gc->proto_data; |
861 | |
862 *jc = NULL; | |
863 | |
864 while(bcs != NULL) { | |
865 b = bcs->data; | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
866 if (id == gaim_chat_get_id(GAIM_CHAT(b))) |
2956 | 867 break; |
868 bcs = bcs->next; | |
869 } | |
870 | |
871 if (bcs != NULL) { | |
872 bcs = jd->chats; | |
873 while (bcs != NULL) { | |
874 *jc = bcs->data; | |
875 if ((*jc)->state == JCS_ACTIVE && (*jc)->b == b) | |
876 break; | |
877 bcs = bcs->next; | |
878 } | |
879 } | |
880 | |
881 return(bcs == NULL? -EINVAL : 0); | |
882 } | |
883 | |
884 /* | |
885 * Find any chat | |
886 */ | |
5572 | 887 static struct jabber_chat *find_any_chat(GaimConnection *gc, jid chat) |
2956 | 888 { |
889 GSList *jcs = ((struct jabber_data *)gc->proto_data)->chats; | |
2086 | 890 struct jabber_chat *jc = NULL; |
891 | |
2956 | 892 while (jcs) { |
893 jc = jcs->data; | |
3311 | 894 if (!jid_cmpx(chat, jc->gjid, JID_USER | JID_SERVER)) |
2086 | 895 break; |
896 jc = NULL; | |
2956 | 897 jcs = jcs->next; |
2086 | 898 } |
899 | |
900 return jc; | |
901 } | |
902 | |
2956 | 903 |
904 /* | |
905 * Find existing/active Jabber chat | |
906 */ | |
5572 | 907 static struct jabber_chat *find_existing_chat(GaimConnection *gc, jid chat) |
2956 | 908 { |
909 GSList *jcs = ((struct jabber_data *)gc->proto_data)->chats; | |
910 struct jabber_chat *jc = NULL; | |
911 | |
912 while (jcs) { | |
913 jc = jcs->data; | |
3311 | 914 if (jc->state == JCS_ACTIVE && !jid_cmpx(chat, jc->gjid, JID_USER | JID_SERVER)) |
2956 | 915 break; |
916 jc = NULL; | |
917 jcs = jcs->next; | |
918 } | |
919 | |
920 return jc; | |
921 } | |
922 | |
923 /* | |
924 * Find pending chat | |
925 */ | |
5572 | 926 static struct jabber_chat *find_pending_chat(GaimConnection *gc, jid chat) |
2086 | 927 { |
2956 | 928 GSList *jcs = ((struct jabber_data *)gc->proto_data)->chats; |
2086 | 929 struct jabber_chat *jc = NULL; |
930 | |
2956 | 931 while (jcs) { |
932 jc = jcs->data; | |
3311 | 933 if (jc->state == JCS_PENDING && !jid_cmpx(chat, jc->gjid, JID_USER | JID_SERVER)) |
2086 | 934 break; |
935 jc = NULL; | |
2956 | 936 jcs = jcs->next; |
2086 | 937 } |
938 | |
939 return jc; | |
940 } | |
941 | |
5679 | 942 static gboolean find_chat_buddy(GaimConversation *b, char *name) |
2086 | 943 { |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
944 GList *m = gaim_chat_get_users(GAIM_CHAT(b)); |
2086 | 945 |
946 while (m) { | |
947 if (!strcmp(m->data, name)) | |
948 return TRUE; | |
949 m = m->next; | |
950 } | |
951 | |
952 return FALSE; | |
953 } | |
954 | |
2956 | 955 /* |
3236 | 956 * Remove a buddy from the (gaim) buddylist (if he's on it) |
957 */ | |
5572 | 958 static void jabber_remove_gaim_buddy(GaimConnection *gc, const char *buddyname) |
3236 | 959 { |
960 struct buddy *b; | |
961 | |
4687 | 962 if ((b = gaim_find_buddy(gc->account, buddyname)) != NULL) { |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
963 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
964 "removing buddy [1]: %s\n", buddyname); |
4687 | 965 gaim_blist_remove_buddy(b); |
4349 | 966 gaim_blist_save(); |
3236 | 967 } |
968 } | |
969 | |
5572 | 970 static void jabber_change_passwd(GaimConnection *gc, const char *old, const char *new) |
3257 | 971 { |
972 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; | |
973 | |
974 if(strcmp(old, gjc->pass)) | |
975 { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
976 gaim_notify_error(gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
977 _("Unable to change password."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
978 _("The current password you entered is incorrect. " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
979 "Your password has not been changed.")); |
3257 | 980 } |
981 else if(!strcmp(old, new)) | |
982 { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
983 gaim_notify_error(gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
984 _("Unable to change password"), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
985 _("The new password you entered is the same as " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
986 "your current password. " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
987 "Your password remains the same.")); |
3257 | 988 } |
989 else | |
990 { | |
991 xmlnode x, y, z; | |
992 char *id; | |
993 | |
994 x = jutil_iqnew(JPACKET__SET, NS_REGISTER); | |
995 xmlnode_put_attrib(x, "to", gjc->user->server); | |
996 y = xmlnode_get_tag(x, "query"); | |
997 z = xmlnode_insert_tag(y, "username"); | |
998 xmlnode_insert_cdata(z, gjc->user->user, -1); | |
999 z = xmlnode_insert_tag(y, "password"); | |
1000 xmlnode_insert_cdata(z, new, -1); | |
1001 | |
1002 id = gjab_getid(gjc); | |
1003 xmlnode_put_attrib(x, "id", id); | |
1004 | |
1005 free(gjc->pass); | |
1006 gjc->pass = strdup(new); | |
1007 | |
1008 g_hash_table_insert(gjc->queries, g_strdup(id), g_strdup("change_password")); | |
1009 | |
1010 gjab_send(gjc, x); | |
1011 xmlnode_free(x); | |
1012 } | |
1013 } | |
3311 | 1014 |
3340 | 1015 /* |
1016 * Return pointer to jabber_buddy_data if buddy found. Create if necessary. | |
1017 */ | |
5572 | 1018 static struct jabber_buddy_data* jabber_find_buddy(GaimConnection *gc, const char *buddy, gboolean create) |
3311 | 1019 { |
1020 struct jabber_data *jd = gc->proto_data; | |
1021 gpointer val; | |
1022 char *realwho; | |
1023 | |
1024 if((realwho = get_realwho(jd->gjc, buddy, FALSE, NULL)) == NULL) | |
1025 return NULL; | |
1026 | |
1027 val = g_hash_table_lookup(jd->buddies, realwho); | |
1028 if(val) { | |
1029 g_free(realwho); | |
1030 return (struct jabber_buddy_data *)val; | |
1031 | |
5135 | 1032 } else if (create) { |
3311 | 1033 struct jabber_buddy_data *jbd = g_new0(struct jabber_buddy_data, 1); |
3340 | 1034 jbd->invisible = JABBER_NOT_INVIS; |
3311 | 1035 g_hash_table_insert(jd->buddies, g_strdup(realwho), jbd); |
1036 g_free(realwho); | |
1037 return jbd; | |
5135 | 1038 } else { |
5940 | 1039 g_free(realwho); |
5135 | 1040 return NULL; |
3311 | 1041 } |
1042 } | |
3770 | 1043 |
3236 | 1044 /* |
3311 | 1045 * find a resource by name, or if no name given, return the "default" resource |
3770 | 1046 * default being the highest priority one. |
3311 | 1047 */ |
1048 | |
5572 | 1049 static jab_res_info jabber_find_resource(GaimConnection *gc, const char *who) |
3311 | 1050 { |
1051 GSList *resources; | |
5135 | 1052 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, who, FALSE); |
3311 | 1053 jab_res_info jri = NULL; |
1054 char *res = strstr(who, "/"); | |
1055 | |
1056 if(res) | |
1057 res++; | |
1058 | |
1059 if(jbd) | |
1060 { | |
1061 resources = jbd->resources; | |
1062 while(resources) | |
1063 { | |
1064 if(!jri && !res) { | |
1065 jri = (jab_res_info) resources->data; | |
1066 } else if(!res) { /* we're looking for the default priority, so... */ | |
1067 if(((jab_res_info) resources->data)->priority >= jri->priority) | |
1068 jri = (jab_res_info) resources->data; | |
3337 | 1069 } else if(((jab_res_info)resources->data)->name) { |
3311 | 1070 if(!strcasecmp(((jab_res_info) resources->data)->name, res)) { |
1071 jri = (jab_res_info) resources->data; | |
1072 break; | |
1073 } | |
1074 } | |
1075 resources = resources->next; | |
1076 } | |
1077 } | |
1078 | |
1079 return jri; | |
1080 } | |
1081 | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
1082 #if 0 |
5572 | 1083 static gboolean jabber_is_default_resource(GaimConnection *gc, const char *who) |
5291 | 1084 { |
1085 jab_res_info jri = jabber_find_resource(gc, who); | |
1086 char *buddy = g_strdup(who); | |
1087 char *resource = strrchr(buddy, '/'); | |
1088 | |
1089 if(!resource || !strcmp(resource+1, jri->name)) { | |
1090 g_free(buddy); | |
1091 return TRUE; | |
1092 } | |
1093 | |
1094 g_free(buddy); | |
1095 return FALSE; | |
1096 } | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
1097 #endif |
5291 | 1098 |
3311 | 1099 /* |
1100 * if the resource doesn't exist, create it. otherwise, just update the priority | |
2956 | 1101 */ |
5572 | 1102 static void jabber_track_resource(GaimConnection *gc, |
3311 | 1103 char *buddy, |
1104 char *res, | |
1105 int priority, | |
1106 int state) | |
1107 { | |
5135 | 1108 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, buddy, TRUE); |
3311 | 1109 |
3337 | 1110 if(jbd) { |
1111 char *who; | |
1112 jab_res_info jri; | |
1113 if(res) | |
1114 who = g_strdup_printf("%s/%s", buddy, res); | |
1115 else | |
1116 who = g_strdup(buddy); | |
1117 jri = jabber_find_resource(gc, who); | |
3311 | 1118 g_free(who); |
1119 if(!jri) { | |
1120 jri = g_new0(struct jabber_resource_info, 1); | |
1121 jri->name = g_strdup(res); | |
1122 jri->away_msg = NULL; | |
5093 | 1123 jri->has_xhtml = TRUE; |
3311 | 1124 jbd->resources = g_slist_append(jbd->resources, jri); |
1125 } | |
1126 jri->priority = priority; | |
1127 jri->state = state; | |
1128 } | |
1129 } | |
1130 | |
1131 /* | |
1132 * remove the resource, if it exists | |
1133 */ | |
5572 | 1134 static void jabber_remove_resource(GaimConnection *gc, char *buddy, char *res) |
2956 | 1135 { |
5135 | 1136 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, buddy, FALSE); |
3337 | 1137 if(jbd) { |
1138 char *who; | |
1139 jab_res_info jri; | |
1140 if(res) | |
1141 who = g_strdup_printf("%s/%s", buddy, res); | |
1142 else | |
1143 who = g_strdup(buddy); | |
1144 jri = jabber_find_resource(gc, who); | |
3311 | 1145 g_free(who); |
1146 if(jri) { | |
3337 | 1147 if(jri->name) |
1148 g_free(jri->name); | |
3311 | 1149 if(jri->away_msg) |
1150 g_free(jri->away_msg); | |
1151 jbd->resources = g_slist_remove(jbd->resources, jri); | |
1152 g_free(jri); | |
1153 } | |
1154 } | |
1155 } | |
1156 | |
1157 /* | |
1158 * grab the away message for the default resource | |
1159 */ | |
1160 static char *jabber_lookup_away(gjconn gjc, char *name) | |
1161 { | |
1162 jab_res_info jri = jabber_find_resource(GJ_GC(gjc), name); | |
1163 | |
4745 | 1164 if(!jri) |
3311 | 1165 return _("Unknown"); |
1166 | |
1167 return jri->away_msg; | |
1168 } | |
4745 | 1169 static const char *jabber_get_state_string(int s) { |
1170 switch(s) { | |
1171 case UC_AWAY: | |
1172 return _("Away"); | |
1173 case UC_CHAT: | |
1174 return _("Chatty"); | |
1175 case UC_XA: | |
1176 return _("Extended Away"); | |
1177 case UC_DND: | |
1178 return _("Do Not Disturb"); | |
1179 default: | |
1180 return _("Available"); | |
1181 } | |
1182 } | |
3311 | 1183 |
1184 static void jabber_track_away(gjconn gjc, jpacket p, char *type) | |
1185 { | |
1186 jab_res_info jri = NULL; | |
1187 | |
3337 | 1188 if(!p || !p->from || !p->from->user) |
3311 | 1189 return; |
1190 | |
1191 jri = jabber_find_resource(GJ_GC(gjc), jid_full(p->from)); | |
1192 | |
1193 if(!jri) | |
1194 return; | |
3770 | 1195 |
3311 | 1196 if(jri->away_msg) |
1197 g_free(jri->away_msg); | |
1198 | |
4745 | 1199 jri->away_msg = g_strdup(xmlnode_get_tag_data(p->x, "status")); |
3311 | 1200 } |
1201 | |
5572 | 1202 static void jabber_convo_closed(GaimConnection *gc, char *name) |
3311 | 1203 { |
1204 jab_res_info jri = jabber_find_resource(gc, name); | |
1205 | |
1206 if(jri) { | |
1207 if(jri->thread_id) | |
1208 g_free(jri->thread_id); | |
1209 | |
1210 jri->thread_id = NULL; | |
2956 | 1211 } |
1212 } | |
1213 | |
3311 | 1214 static void jabber_track_convo_thread(gjconn gjc, char *name, char *thread_id) |
1215 { | |
1216 jab_res_info jri = jabber_find_resource(GJ_GC(gjc), name); | |
1217 | |
1218 if(jri) { | |
1219 if(jri->thread_id) | |
1220 g_free(jri->thread_id); | |
1221 | |
1222 jri->thread_id = g_strdup(thread_id); | |
1223 } | |
1224 } | |
1225 | |
5136 | 1226 static char *jabber_get_convo_thread(gjconn gjc, const char *name) |
3311 | 1227 { |
1228 char *ct = NULL; | |
1229 jab_res_info jri = jabber_find_resource(GJ_GC(gjc), name); | |
1230 | |
1231 if(jri) { | |
1232 if(jri->thread_id) | |
1233 ct = g_strdup(jri->thread_id); | |
1234 } | |
5135 | 1235 |
3311 | 1236 return ct; |
1237 } | |
1238 | |
1239 | |
5426 | 1240 static time_t str_to_time(char *timestamp) |
3159 | 1241 { |
5426 | 1242 struct tm t; |
1243 time_t retval = 0; | |
1244 char buf[32]; | |
1245 char *c; | |
1246 int tzoff = 0; | |
1247 | |
1248 time(&retval); | |
1249 localtime_r(&retval, &t); | |
1250 | |
1251 snprintf(buf, sizeof(buf), "%s", timestamp); | |
1252 c = buf; | |
1253 | |
1254 /* 4 digit year */ | |
1255 if(!sscanf(c, "%04d", &t.tm_year)) return 0; | |
1256 c+=4; | |
1257 if(*c == '-') | |
1258 c++; | |
1259 | |
1260 t.tm_year -= 1900; | |
1261 | |
1262 /* 2 digit month */ | |
1263 if(!sscanf(c, "%02d", &t.tm_mon)) return 0; | |
1264 c+=2; | |
1265 if(*c == '-') | |
1266 c++; | |
1267 | |
1268 t.tm_mon -= 1; | |
1269 | |
1270 /* 2 digit day */ | |
1271 if(!sscanf(c, "%02d", &t.tm_mday)) return 0; | |
1272 c+=2; | |
1273 | |
1274 if(*c == 'T') { /* we have more than a date, keep going */ | |
1275 c++; /* skip the "T" */ | |
1276 | |
1277 /* 2 digit hour */ | |
1278 if(sscanf(c, "%02d:%02d:%02d", &t.tm_hour, &t.tm_min, &t.tm_sec)) { | |
1279 int tzhrs, tzmins; | |
1280 c+=8; | |
1281 if(*c == '.') /* dealing with precision we don't care about */ | |
1282 c += 4; | |
1283 | |
1284 if((*c == '+' || *c == '-') && | |
1285 sscanf(c+1, "%02d:%02d", &tzhrs, &tzmins)) { | |
1286 tzoff = tzhrs*60*60 + tzmins*60; | |
1287 if(*c == '+') | |
1288 tzoff *= -1; | |
5279 | 1289 } |
5426 | 1290 |
1291 #ifdef HAVE_TM_GMTOFF | |
1292 tzoff += t.tm_gmtoff; | |
1293 #else | |
1294 # ifdef HAVE_TIMEZONE | |
1295 tzset(); /* making sure */ | |
1296 tzoff -= timezone; | |
1297 # endif | |
1298 #endif | |
5279 | 1299 } |
3229 | 1300 } |
5426 | 1301 retval = mktime(&t); |
1302 | |
1303 retval += tzoff; | |
1304 | |
1305 return retval; | |
3159 | 1306 } |
1307 | |
2956 | 1308 static void jabber_handlemessage(gjconn gjc, jpacket p) |
2086 | 1309 { |
3311 | 1310 xmlnode y, subj; |
3159 | 1311 time_t time_sent = time(NULL); |
3311 | 1312 gboolean typing = FALSE; |
5093 | 1313 gboolean has_xhtml = TRUE; |
2086 | 1314 |
1315 char *from = NULL, *msg = NULL, *type = NULL, *topic = NULL; | |
3311 | 1316 char *thread_id = NULL; |
1317 char *conference_room = NULL; | |
2086 | 1318 char m[BUF_LONG * 2]; |
1319 | |
1320 type = xmlnode_get_attrib(p->x, "type"); | |
3769 | 1321 |
3311 | 1322 if ((y = xmlnode_get_tag(p->x, "thread"))) |
1323 thread_id = xmlnode_get_data(y); | |
1324 | |
1325 y = xmlnode_get_firstchild(p->x); | |
1326 | |
1327 while(y) { | |
1328 if(NSCHECK(y, NS_DELAY)) { | |
1329 char *timestamp = xmlnode_get_attrib(y, "stamp"); | |
5426 | 1330 if(timestamp) |
1331 time_sent = str_to_time(timestamp); | |
3311 | 1332 } else if(NSCHECK(y, "jabber:x:event")) { |
1333 if(xmlnode_get_tag(y, "composing")) | |
1334 typing = TRUE; | |
1335 } else if(NSCHECK(y, "jabber:x:conference")) { | |
1336 conference_room = xmlnode_get_attrib(y, "jid"); | |
1337 } | |
1338 y = xmlnode_get_nextsibling(y); | |
3159 | 1339 } |
1340 | |
2086 | 1341 if (!type || !strcasecmp(type, "normal") || !strcasecmp(type, "chat")) { |
1342 | |
1343 from = jid_full(p->from); | |
1344 if ((y = xmlnode_get_tag(p->x, "html"))) { | |
5093 | 1345 msg = xmlnode2str(y); |
1346 } else if ((y = xmlnode_get_tag(p->x, "body"))) { | |
2086 | 1347 msg = xmlnode_get_data(y); |
5093 | 1348 has_xhtml = FALSE; |
2086 | 1349 } |
1350 | |
1351 if (!from) | |
1352 return; | |
1353 | |
3311 | 1354 if (conference_room) { |
5234 | 1355 GHashTable *components = g_hash_table_new_full(g_str_hash, |
1356 g_str_equal, g_free, g_free); | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1357 char **data; |
2086 | 1358 |
3311 | 1359 data = g_strsplit(conference_room, "@", 2); |
5234 | 1360 g_hash_table_replace(components, g_strdup("room"), |
1361 g_strdup(data[0])); | |
1362 g_hash_table_replace(components, g_strdup("server"), | |
1363 g_strdup(data[1])); | |
1364 g_hash_table_replace(components, g_strdup("handle"), | |
1365 g_strdup(gjc->user->user)); | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1366 g_strfreev(data); |
2086 | 1367 |
5234 | 1368 serv_got_chat_invite(GJ_GC(gjc), conference_room, from, msg, components); |
2086 | 1369 } else if (msg) { /* whisper */ |
1370 struct jabber_chat *jc; | |
1371 g_snprintf(m, sizeof(m), "%s", msg); | |
2956 | 1372 if (((jc = find_existing_chat(GJ_GC(gjc), p->from)) != NULL) && jc->b) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1373 serv_got_chat_in(GJ_GC(gjc), |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1374 gaim_chat_get_id(GAIM_CHAT(jc->b)), |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1375 p->from->resource, 1, m, time_sent); |
2086 | 1376 else { |
2278
00a8b7bcef6c
[gaim-migrate @ 2288]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2232
diff
changeset
|
1377 int flags = 0; |
3769 | 1378 jab_res_info jri = jabber_find_resource(GJ_GC(gjc), from); |
5093 | 1379 if(jri) { |
1380 if(typing) | |
1381 jri->has_composing = TRUE; | |
1382 jri->has_xhtml = has_xhtml; | |
1383 } | |
3769 | 1384 jabber_track_convo_thread(gjc, from, thread_id); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1385 if (gaim_find_conversation(from)) |
3769 | 1386 serv_got_im(GJ_GC(gjc), from, m, flags, |
3311 | 1387 time_sent, -1); |
2086 | 1388 else { |
2956 | 1389 if(p->from->user) { |
3311 | 1390 from = g_strdup_printf("%s@%s", p->from->user, |
1391 p->from->server); | |
2956 | 1392 } else { |
3311 | 1393 /* server message? */ |
1394 from = g_strdup(p->from->server); | |
2956 | 1395 } |
3159 | 1396 serv_got_im(GJ_GC(gjc), from, m, flags, time_sent, -1); |
2086 | 1397 g_free(from); |
1398 } | |
1399 } | |
3311 | 1400 } else { |
1401 /* a non-message message! */ | |
1402 from = g_strdup_printf("%s@%s", p->from->user, p->from->server); | |
1403 if(typing) | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
1404 serv_got_typing(GJ_GC(gjc), from, 0, GAIM_TYPING); |
3311 | 1405 else |
1406 serv_got_typing_stopped(GJ_GC(gjc), from); | |
1407 g_free(from); | |
2086 | 1408 } |
1409 | |
1410 } else if (!strcasecmp(type, "error")) { | |
1411 if ((y = xmlnode_get_tag(p->x, "error"))) { | |
1412 type = xmlnode_get_attrib(y, "code"); | |
1413 msg = xmlnode_get_data(y); | |
1414 } | |
1415 | |
1416 if (msg) { | |
3427 | 1417 from = g_strdup_printf(_("Jabber Error %s"), type ? type : ""); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1418 gaim_notify_error(GJ_GC(gjc), NULL, from, msg); |
2086 | 1419 g_free(from); |
1420 } | |
1421 } else if (!strcasecmp(type, "groupchat")) { | |
1422 struct jabber_chat *jc; | |
1423 static int i = 0; | |
1424 | |
1425 if ((y = xmlnode_get_tag(p->x, "html"))) { | |
5093 | 1426 msg = xmlnode2str(y); |
1427 } else if ((y = xmlnode_get_tag(p->x, "body"))) { | |
2086 | 1428 msg = xmlnode_get_data(y); |
1429 } | |
1430 | |
1431 if ((subj = xmlnode_get_tag(p->x, "subject"))) { | |
3770 | 1432 topic = xmlnode_get_data(subj); |
1433 } | |
2086 | 1434 |
2956 | 1435 jc = find_existing_chat(GJ_GC(gjc), p->from); |
2086 | 1436 if (!jc) { |
1437 /* we're not in this chat. are we supposed to be? */ | |
2956 | 1438 if ((jc = find_pending_chat(GJ_GC(gjc), p->from)) != NULL) { |
2086 | 1439 /* yes, we're supposed to be. so now we are. */ |
2956 | 1440 jc->b = serv_got_joined_chat(GJ_GC(gjc), i++, p->from->user); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1441 jc->id = gaim_chat_get_id(GAIM_CHAT(jc->b)); |
2956 | 1442 jc->state = JCS_ACTIVE; |
2086 | 1443 } else { |
1444 /* no, we're not supposed to be. */ | |
1445 g_free(msg); | |
1446 return; | |
1447 } | |
1448 } | |
1449 if (p->from->resource) { | |
1450 if (!y) { | |
2956 | 1451 if (!find_chat_buddy(jc->b, p->from->resource)) { |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1452 gaim_chat_add_user(GAIM_CHAT(jc->b), |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1453 p->from->resource, NULL); |
2956 | 1454 } else if ((y = xmlnode_get_tag(p->x, "status"))) { |
3311 | 1455 jabber_track_away(gjc, p, NULL); |
2086 | 1456 } |
1457 } else if (jc->b && msg) { | |
1458 char buf[8192]; | |
1459 | |
1460 if (topic) { | |
1461 char tbuf[8192]; | |
1462 g_snprintf(tbuf, sizeof(tbuf), "%s", topic); | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1463 gaim_chat_set_topic(GAIM_CHAT(jc->b), |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1464 p->from->resource, tbuf); |
2086 | 1465 } |
1466 | |
1467 g_snprintf(buf, sizeof(buf), "%s", msg); | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1468 serv_got_chat_in(GJ_GC(gjc), |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1469 gaim_chat_get_id(GAIM_CHAT(jc->b)), |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1470 p->from->resource, 0, buf, time_sent); |
2086 | 1471 } |
1472 } else { /* message from the server */ | |
3770 | 1473 if(jc->b && topic) { |
1474 char tbuf[8192]; | |
2086 | 1475 g_snprintf(tbuf, sizeof(tbuf), "%s", topic); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1476 gaim_chat_set_topic(GAIM_CHAT(jc->b), "", tbuf); |
2086 | 1477 } |
1478 } | |
1479 | |
1480 } else { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
1481 gaim_debug(GAIM_DEBUG_WARNING, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
1482 "unhandled message %s\n", type); |
2086 | 1483 } |
1484 } | |
3770 | 1485 |
2956 | 1486 static void jabber_handlepresence(gjconn gjc, jpacket p) |
2086 | 1487 { |
1488 char *to, *from, *type; | |
1489 struct buddy *b = NULL; | |
3311 | 1490 gaim_jid gjid; |
2086 | 1491 char *buddy; |
3194 | 1492 xmlnode y; |
2086 | 1493 char *show; |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2382
diff
changeset
|
1494 int state = 0; |
5679 | 1495 GaimConversation *cnv = NULL; |
2086 | 1496 struct jabber_chat *jc = NULL; |
3311 | 1497 int priority = 0; |
1498 struct jabber_buddy_data *jbd; | |
3770 | 1499 |
2086 | 1500 to = xmlnode_get_attrib(p->x, "to"); |
1501 from = xmlnode_get_attrib(p->x, "from"); | |
1502 type = xmlnode_get_attrib(p->x, "type"); | |
3770 | 1503 |
3311 | 1504 if((buddy = get_realwho(gjc, from, FALSE, &gjid)) == NULL) |
1505 return; | |
1506 | |
1507 if (gjid->user == NULL) { | |
1508 /* FIXME: transport */ | |
1509 g_free(buddy); | |
1510 gaim_jid_free(gjid); | |
1511 return; | |
1512 } | |
1513 | |
5135 | 1514 jbd = jabber_find_buddy(GJ_GC(gjc), buddy, TRUE); |
3311 | 1515 |
1516 if(jbd->error_msg) { | |
1517 g_free(jbd->error_msg); | |
1518 jbd->error_msg = NULL; | |
1519 } | |
1520 | |
3259 | 1521 if(type && !strcasecmp(type, "error")) { |
1522 state = UC_ERROR; | |
3311 | 1523 if((y = xmlnode_get_tag(p->x, "error")) != NULL) { |
1524 jbd->error_msg = g_strdup_printf(_("Error %s: %s"), | |
1525 xmlnode_get_attrib(y, "code"), xmlnode_get_data(y)); | |
1526 } else { | |
1527 jbd->error_msg = g_strdup(_("Unknown Error in presence")); | |
1528 } | |
3259 | 1529 } else { |
1530 if ((y = xmlnode_get_tag(p->x, "show"))) { | |
1531 show = xmlnode_get_data(y); | |
1532 if (!show) { | |
1533 state = 0; | |
1534 } else if (!strcasecmp(show, "away")) { | |
1535 state = UC_AWAY; | |
1536 } else if (!strcasecmp(show, "chat")) { | |
1537 state = UC_CHAT; | |
1538 } else if (!strcasecmp(show, "xa")) { | |
1539 state = UC_XA; | |
1540 } else if (!strcasecmp(show, "dnd")) { | |
1541 state = UC_DND; | |
1542 } | |
1543 } else { | |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2382
diff
changeset
|
1544 state = 0; |
2086 | 1545 } |
1546 } | |
1547 | |
5291 | 1548 if ((y = xmlnode_get_tag(p->x, "priority"))) |
1549 priority = atoi(xmlnode_get_data(y)); | |
1550 | |
2086 | 1551 /* um. we're going to check if it's a chat. if it isn't, and there are pending |
2956 | 1552 * chats, create the chat. if there aren't pending chats and we don't have the |
1553 * buddy on our list, simply bail out. */ | |
3311 | 1554 if ((cnv = find_chat(GJ_GC(gjc), gjid->user)) == NULL) { |
2086 | 1555 static int i = 0x70; |
3311 | 1556 if ((jc = find_pending_chat(GJ_GC(gjc), gjid)) != NULL) { |
1557 jc->b = cnv = serv_got_joined_chat(GJ_GC(gjc), i++, gjid->user); | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1558 jc->id = gaim_chat_get_id(GAIM_CHAT(jc->b)); |
2956 | 1559 jc->state = JCS_ACTIVE; |
4687 | 1560 } else if ((b = gaim_find_buddy(GJ_GC(gjc)->account, buddy)) == NULL) { |
2956 | 1561 g_free(buddy); |
3311 | 1562 gaim_jid_free(gjid); |
2956 | 1563 return; |
2086 | 1564 } |
1565 } | |
1566 | |
4732 | 1567 if (state == UC_ERROR || (type && (strcasecmp(type, "unavailable") == 0))) |
3311 | 1568 jabber_remove_resource(GJ_GC(gjc), buddy, gjid->resource); |
1569 else { | |
1570 jabber_track_resource(GJ_GC(gjc), buddy, gjid->resource, priority, state); | |
1571 | |
1572 /* keep track of away msg somewhat the same as the yahoo plugin */ | |
1573 jabber_track_away(gjc, p, type); | |
1574 } | |
3770 | 1575 |
2086 | 1576 if (!cnv) { |
3311 | 1577 /* this is where we handle presence information for "regular" buddies */ |
1578 jab_res_info jri = jabber_find_resource(GJ_GC(gjc), buddy); | |
1579 if(jri) { | |
4732 | 1580 serv_got_update(GJ_GC(gjc), buddy, 1, 0, b->signon, b->idle, jri->state); |
3311 | 1581 } else |
4732 | 1582 serv_got_update(GJ_GC(gjc), buddy, 0, 0, 0, 0, 0); |
3311 | 1583 |
2086 | 1584 } else { |
3311 | 1585 if (gjid->resource) { |
3259 | 1586 if (type && (!strcasecmp(type, "unavailable"))) { |
2086 | 1587 struct jabber_data *jd; |
3311 | 1588 if (!jc && !(jc = find_existing_chat(GJ_GC(gjc), gjid))) { |
2086 | 1589 g_free(buddy); |
3311 | 1590 gaim_jid_free(gjid); |
2086 | 1591 return; |
1592 } | |
1593 jd = jc->gc->proto_data; | |
2956 | 1594 /* if it's not ourselves...*/ |
3311 | 1595 if (strcmp(gjid->resource, jc->gjid->resource) && jc->b) { |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1596 gaim_chat_remove_user(GAIM_CHAT(jc->b), gjid->resource, |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1597 NULL); |
2086 | 1598 g_free(buddy); |
3311 | 1599 gaim_jid_free(gjid); |
2086 | 1600 return; |
1601 } | |
2956 | 1602 |
1603 jc->state = JCS_CLOSED; | |
1604 serv_got_chat_left(GJ_GC(gjc), jc->id); | |
1605 /* | |
1606 * TBD: put back some day? | |
1607 jd->chats = g_slist_remove(jd->chats, jc); | |
1608 g_free(jc); | |
1609 */ | |
1610 } else { | |
3311 | 1611 if ((!jc && !(jc = find_existing_chat(GJ_GC(gjc), gjid))) || !jc->b) { |
2956 | 1612 g_free(buddy); |
3311 | 1613 gaim_jid_free(gjid); |
2956 | 1614 return; |
1615 } | |
3311 | 1616 if (!find_chat_buddy(jc->b, gjid->resource)) { |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4357
diff
changeset
|
1617 gaim_chat_add_user(GAIM_CHAT(jc->b), gjid->resource, NULL); |
2086 | 1618 } |
1619 } | |
1620 } | |
1621 } | |
1622 | |
1623 g_free(buddy); | |
3311 | 1624 gaim_jid_free(gjid); |
2086 | 1625 |
1626 return; | |
1627 } | |
1628 | |
3229 | 1629 /* |
1630 * Used only by Jabber accept/deny add stuff just below | |
1631 */ | |
1632 struct jabber_add_permit { | |
5572 | 1633 GaimConnection *gc; |
3229 | 1634 gchar *user; |
1635 }; | |
1636 | |
1637 /* | |
1638 * Common part for Jabber accept/deny adds | |
1639 * | |
1640 * "type" says whether we'll permit/deny the subscribe request | |
1641 */ | |
1642 static void jabber_accept_deny_add(struct jabber_add_permit *jap, const char *type) | |
1643 { | |
1644 xmlnode g = xmlnode_new_tag("presence"); | |
1645 | |
1646 xmlnode_put_attrib(g, "to", jap->user); | |
1647 xmlnode_put_attrib(g, "type", type); | |
4249 | 1648 gjab_send(GC_GJ(jap->gc), g); |
3229 | 1649 |
1650 xmlnode_free(g); | |
1651 } | |
1652 | |
1653 /* | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1654 * Callback from "accept" in gaim_request_action() invoked |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1655 * by jabber_handles10n() |
3229 | 1656 */ |
3730 | 1657 static void jabber_accept_add(struct jabber_add_permit *jap) |
3229 | 1658 { |
5578
847ad796326d
[gaim-migrate @ 5982]
Christian Hammond <chipx86@chipx86.com>
parents:
5572
diff
changeset
|
1659 if(g_list_find(gaim_connections_get_all(), jap->gc)) { |
4249 | 1660 jabber_accept_deny_add(jap, "subscribed"); |
1661 /* | |
1662 * If we don't already have the buddy on *our* buddylist, | |
1663 * ask if we want him or her added. | |
1664 */ | |
4687 | 1665 if(gaim_find_buddy(jap->gc->account, jap->user) == NULL) { |
4249 | 1666 show_got_added(jap->gc, NULL, jap->user, NULL, NULL); |
1667 } | |
3229 | 1668 } |
4249 | 1669 |
3229 | 1670 g_free(jap->user); |
1671 g_free(jap); | |
1672 } | |
1673 | |
1674 /* | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1675 * Callback from "deny/cancel" in gaim_request_action() invoked |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1676 * by jabber_handles10n() |
3229 | 1677 */ |
3730 | 1678 static void jabber_deny_add(struct jabber_add_permit *jap) |
3229 | 1679 { |
5578
847ad796326d
[gaim-migrate @ 5982]
Christian Hammond <chipx86@chipx86.com>
parents:
5572
diff
changeset
|
1680 if(g_list_find(gaim_connections_get_all(), jap->gc)) { |
4249 | 1681 jabber_accept_deny_add(jap, "unsubscribed"); |
1682 } | |
1683 | |
3229 | 1684 g_free(jap->user); |
1685 g_free(jap); | |
1686 } | |
1687 | |
1688 /* | |
1689 * Handle subscription requests | |
1690 */ | |
2956 | 1691 static void jabber_handles10n(gjconn gjc, jpacket p) |
2086 | 1692 { |
1693 xmlnode g; | |
1694 char *Jid = xmlnode_get_attrib(p->x, "from"); | |
3136 | 1695 char *type = xmlnode_get_attrib(p->x, "type"); |
2086 | 1696 |
1697 g = xmlnode_new_tag("presence"); | |
1698 xmlnode_put_attrib(g, "to", Jid); | |
3229 | 1699 |
1700 if (!strcmp(type, "subscribe")) { | |
1701 /* | |
1702 * A "subscribe to us" request was received - put up the approval dialog | |
1703 */ | |
1704 struct jabber_add_permit *jap = g_new0(struct jabber_add_permit, 1); | |
1705 gchar *msg = g_strdup_printf(_("The user %s wants to add you to their buddy list."), | |
1706 Jid); | |
1707 | |
4249 | 1708 jap->gc = GJ_GC(gjc); |
3229 | 1709 jap->user = g_strdup(Jid); |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1710 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1711 gaim_request_action(jap->gc, NULL, msg, NULL, 0, jap, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1712 _("Authorize"), G_CALLBACK(jabber_accept_add), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1713 _("Deny"), G_CALLBACK(jabber_deny_add)); |
3229 | 1714 |
1715 g_free(msg); | |
1716 xmlnode_free(g); /* Never needed it here anyway */ | |
1717 return; | |
1718 | |
1719 } else if (!strcmp(type, "unsubscribe")) { | |
1720 /* | |
1721 * An "unsubscribe to us" was received - simply "approve" it | |
1722 */ | |
2086 | 1723 xmlnode_put_attrib(g, "type", "unsubscribed"); |
3229 | 1724 } else { |
1725 /* | |
1726 * Did we attempt to subscribe to somebody and they do not exist? | |
1727 */ | |
3136 | 1728 if (!strcmp(type, "unsubscribed")) { |
1729 xmlnode y; | |
1730 char *status; | |
1731 if((y = xmlnode_get_tag(p->x, "status")) && (status = xmlnode_get_data(y)) && | |
1732 !strcmp(status, "Not Found")) { | |
3427 | 1733 char *msg = g_strdup_printf(_("The Jabber user %s does not exist and was therefore " |
1734 "not added to your roster."), | |
1735 xmlnode_get_attrib(p->x, "from")); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1736 gaim_notify_error(GJ_GC(gjc), NULL, _("No such user."), msg); |
3136 | 1737 g_free(msg); |
1738 } | |
1739 } | |
1740 | |
2956 | 1741 xmlnode_free(g); |
2086 | 1742 return; |
2956 | 1743 } |
1744 | |
1745 gjab_send(gjc, g); | |
1746 xmlnode_free(g); | |
2086 | 1747 } |
1748 | |
2956 | 1749 /* |
1750 * Pending subscription to a buddy? | |
1751 */ | |
1752 #define BUD_SUB_TO_PEND(sub, ask) ((!strcasecmp((sub), "none") || !strcasecmp((sub), "from")) && \ | |
3770 | 1753 (ask) != NULL && !strcasecmp((ask), "subscribe")) |
2956 | 1754 |
1755 /* | |
1756 * Subscribed to a buddy? | |
1757 */ | |
1758 #define BUD_SUBD_TO(sub, ask) ((!strcasecmp((sub), "to") || !strcasecmp((sub), "both")) && \ | |
1759 ((ask) == NULL || !strcasecmp((ask), "subscribe"))) | |
1760 | |
1761 /* | |
1762 * Pending unsubscription to a buddy? | |
1763 */ | |
1764 #define BUD_USUB_TO_PEND(sub, ask) ((!strcasecmp((sub), "to") || !strcasecmp((sub), "both")) && \ | |
1765 (ask) != NULL && !strcasecmp((ask), "unsubscribe")) | |
1766 | |
1767 /* | |
1768 * Unsubscribed to a buddy? | |
1769 */ | |
1770 #define BUD_USUBD_TO(sub, ask) ((!strcasecmp((sub), "none") || !strcasecmp((sub), "from")) && \ | |
1771 ((ask) == NULL || !strcasecmp((ask), "unsubscribe"))) | |
1772 | |
1773 /* | |
1774 * If a buddy is added or removed from the roster on another resource | |
1775 * jabber_handlebuddy is called | |
1776 * | |
1777 * Called with roster item node. | |
1778 */ | |
1779 static void jabber_handlebuddy(gjconn gjc, xmlnode x) | |
1780 { | |
1781 xmlnode g; | |
3311 | 1782 char *who, *name, *sub, *ask; |
1783 gaim_jid gjid; | |
2956 | 1784 struct buddy *b = NULL; |
4927 | 1785 struct jabber_buddy_data *jbd = NULL; |
3136 | 1786 char *buddyname, *groupname = NULL; |
2956 | 1787 |
3311 | 1788 who = xmlnode_get_attrib(x, "jid"); |
2956 | 1789 name = xmlnode_get_attrib(x, "name"); |
1790 sub = xmlnode_get_attrib(x, "subscription"); | |
1791 ask = xmlnode_get_attrib(x, "ask"); | |
3311 | 1792 |
1793 if((buddyname = get_realwho(gjc, who, FALSE, &gjid)) == NULL) | |
1794 return; | |
2956 | 1795 |
4705 | 1796 |
2956 | 1797 /* JFIXME: jabber_handleroster() had a "FIXME: transport" at this |
1798 * equivilent point. So... | |
1799 * | |
3311 | 1800 * We haven't done anything interesting to this point, so we'll |
1801 * violate Good Coding Structure here by simply bailing out. | |
2956 | 1802 */ |
3311 | 1803 if(!gjid->user) { |
1804 g_free(buddyname); | |
1805 gaim_jid_free(gjid); | |
2956 | 1806 return; |
1807 } | |
3311 | 1808 gaim_jid_free(gjid); |
2956 | 1809 |
3236 | 1810 if((g = xmlnode_get_tag(x, "group")) != NULL) { |
3136 | 1811 groupname = xmlnode_get_data(g); |
2956 | 1812 } |
1813 | |
3059 | 1814 /* |
3136 | 1815 * Add or remove a buddy? Change buddy's alias or group? |
3059 | 1816 */ |
2956 | 1817 if (BUD_SUB_TO_PEND(sub, ask) || BUD_SUBD_TO(sub, ask)) { |
4687 | 1818 if ((b = gaim_find_buddy(GJ_GC(gjc)->account, buddyname)) == NULL) { |
4932 | 1819 struct group *g; |
4927 | 1820 b = gaim_buddy_new(GJ_GC(gjc)->account, buddyname, name); |
4687 | 1821 if (groupname) { |
4775 | 1822 if (!(g = gaim_find_group(groupname))) { |
4687 | 1823 g = gaim_group_new(groupname); |
4775 | 1824 gaim_blist_add_group(g, NULL); |
1825 } | |
1826 } else { | |
4687 | 1827 g = gaim_group_new(_("Buddies")); |
4775 | 1828 gaim_blist_add_group(g, NULL); |
1829 } | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
1830 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
1831 "adding buddy [4]: %s\n", buddyname); |
4687 | 1832 gaim_blist_add_buddy(b, g, NULL); |
4349 | 1833 gaim_blist_save(); |
3136 | 1834 } else { |
5264 | 1835 gboolean save = FALSE; |
4687 | 1836 struct group *c_grp = gaim_find_buddys_group(b); |
3136 | 1837 |
3770 | 1838 /* |
3136 | 1839 * If the buddy's in a new group or his/her alias is changed... |
1840 */ | |
1841 if(groupname && c_grp && strcmp(c_grp->name, groupname)) { | |
5264 | 1842 struct group *g = gaim_find_group(groupname); |
1843 if(!g) { | |
1844 g = gaim_group_new(groupname); | |
1845 gaim_blist_add_group(g, NULL); | |
1846 } | |
1847 | |
1848 gaim_blist_add_buddy(b, g, NULL); | |
1849 save = TRUE; | |
1850 } | |
1851 | |
1852 if(name && (!b->alias || strcmp(b->alias, name))) { | |
1853 gaim_blist_alias_buddy(b, name); | |
1854 save = TRUE; | |
1855 } | |
1856 | |
1857 if(save) | |
4349 | 1858 gaim_blist_save(); |
2956 | 1859 } |
1860 } else if (BUD_USUB_TO_PEND(sub, ask) || BUD_USUBD_TO(sub, ask) || !strcasecmp(sub, "remove")) { | |
3236 | 1861 jabber_remove_gaim_buddy(GJ_GC(gjc), buddyname); |
2956 | 1862 } |
5135 | 1863 if(b && (jbd = jabber_find_buddy(b->account->gc, buddyname, TRUE)) != NULL) { |
4927 | 1864 jbd->subscription = JABBER_SUB_NONE; |
1865 if(!strcasecmp(sub, "to")) | |
1866 jbd->subscription |= JABBER_SUB_TO; | |
1867 else if(!strcasecmp(sub, "from")) | |
1868 jbd->subscription |= JABBER_SUB_FROM; | |
1869 else if(!strcasecmp(sub, "both")) | |
1870 jbd->subscription |= JABBER_SUB_BOTH; | |
1871 | |
1872 if(ask && !strcasecmp(ask, "subscribe")) | |
1873 jbd->subscription |= JABBER_SUB_PENDING; | |
1874 } | |
3328 | 1875 |
2956 | 1876 g_free(buddyname); |
1877 | |
1878 } | |
1879 | |
1880 static void jabber_handleroster(gjconn gjc, xmlnode querynode) | |
2086 | 1881 { |
1882 xmlnode x; | |
1883 | |
1884 x = xmlnode_get_firstchild(querynode); | |
1885 while (x) { | |
2956 | 1886 jabber_handlebuddy(gjc, x); |
2086 | 1887 x = xmlnode_get_nextsibling(x); |
1888 } | |
1889 | |
5426 | 1890 x = xmlnode_new_tag("presence"); |
2956 | 1891 gjab_send(gjc, x); |
2086 | 1892 xmlnode_free(x); |
1893 } | |
1894 | |
2956 | 1895 static void jabber_handleauthresp(gjconn gjc, jpacket p) |
2086 | 1896 { |
1897 if (jpacket_subtype(p) == JPACKET__RESULT) { | |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
1898 if (xmlnode_has_children(p->x)) { |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
1899 xmlnode query = xmlnode_get_tag(p->x, "query"); |
5572 | 1900 gaim_connection_update_progress(GJ_GC(gjc), _("Authenticating"), |
1901 4, JABBER_CONNECT_STEPS); | |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
1902 if (!xmlnode_get_tag(query, "digest")) { |
2956 | 1903 g_free(gjc->sid); |
1904 gjc->sid = NULL; | |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
1905 } |
2956 | 1906 gjab_auth(gjc); |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
1907 } else { |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
1908 gaim_debug(GAIM_DEBUG_INFO, "jabber", "auth success\n"); |
2086 | 1909 |
5572 | 1910 gaim_connection_set_state(GJ_GC(gjc), GAIM_CONNECTED); |
2956 | 1911 serv_finish_login(GJ_GC(gjc)); |
1912 | |
1913 ((struct jabber_data *)GJ_GC(gjc)->proto_data)->did_import = TRUE; | |
1914 | |
1915 gjab_reqroster(gjc); | |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
1916 } |
2086 | 1917 } else { |
1918 xmlnode xerr; | |
1919 char *errmsg = NULL; | |
1920 int errcode = 0; | |
1921 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
1922 gaim_debug(GAIM_DEBUG_ERROR, "jabber", "auth failed\n"); |
2086 | 1923 xerr = xmlnode_get_tag(p->x, "error"); |
1924 if (xerr) { | |
1925 char msg[BUF_LONG]; | |
1926 errmsg = xmlnode_get_data(xerr); | |
1927 if (xmlnode_get_attrib(xerr, "code")) { | |
1928 errcode = atoi(xmlnode_get_attrib(xerr, "code")); | |
1929 g_snprintf(msg, sizeof(msg), "Error %d: %s", errcode, errmsg); | |
1930 } else | |
1931 g_snprintf(msg, sizeof(msg), "%s", errmsg); | |
5572 | 1932 gaim_connection_error(GJ_GC(gjc), msg); |
2086 | 1933 } else { |
5572 | 1934 gaim_connection_error(GJ_GC(gjc), _("Unknown login error")); |
2086 | 1935 } |
1936 } | |
1937 } | |
1938 | |
2956 | 1939 static void jabber_handleversion(gjconn gjc, xmlnode iqnode) { |
2086 | 1940 xmlnode querynode, x; |
1941 char *id, *from; | |
1942 char os[1024]; | |
1943 struct utsname osinfo; | |
1944 | |
1945 uname(&osinfo); | |
1946 g_snprintf(os, sizeof os, "%s %s %s", osinfo.sysname, osinfo.release, osinfo.machine); | |
1947 | |
1948 id = xmlnode_get_attrib(iqnode, "id"); | |
1949 from = xmlnode_get_attrib(iqnode, "from"); | |
1950 | |
1951 x = jutil_iqnew(JPACKET__RESULT, NS_VERSION); | |
1952 | |
1953 xmlnode_put_attrib(x, "to", from); | |
1954 xmlnode_put_attrib(x, "id", id); | |
1955 querynode = xmlnode_get_tag(x, "query"); | |
1956 xmlnode_insert_cdata(xmlnode_insert_tag(querynode, "name"), PACKAGE, -1); | |
1957 xmlnode_insert_cdata(xmlnode_insert_tag(querynode, "version"), VERSION, -1); | |
1958 xmlnode_insert_cdata(xmlnode_insert_tag(querynode, "os"), os, -1); | |
1959 | |
2956 | 1960 gjab_send(gjc, x); |
2086 | 1961 |
1962 xmlnode_free(x); | |
1963 } | |
1964 | |
2956 | 1965 static void jabber_handletime(gjconn gjc, xmlnode iqnode) { |
2086 | 1966 xmlnode querynode, x; |
1967 char *id, *from; | |
3770 | 1968 time_t now_t; |
2086 | 1969 struct tm *now; |
1970 char buf[1024]; | |
1971 | |
1972 time(&now_t); | |
1973 now = localtime(&now_t); | |
1974 | |
1975 id = xmlnode_get_attrib(iqnode, "id"); | |
1976 from = xmlnode_get_attrib(iqnode, "from"); | |
1977 | |
1978 x = jutil_iqnew(JPACKET__RESULT, NS_TIME); | |
1979 | |
1980 xmlnode_put_attrib(x, "to", from); | |
1981 xmlnode_put_attrib(x, "id", id); | |
1982 querynode = xmlnode_get_tag(x, "query"); | |
1983 | |
1984 strftime(buf, 1024, "%Y%m%dT%T", now); | |
1985 xmlnode_insert_cdata(xmlnode_insert_tag(querynode, "utc"), buf, -1); | |
1986 strftime(buf, 1024, "%Z", now); | |
1987 xmlnode_insert_cdata(xmlnode_insert_tag(querynode, "tz"), buf, -1); | |
1988 strftime(buf, 1024, "%d %b %Y %T", now); | |
1989 xmlnode_insert_cdata(xmlnode_insert_tag(querynode, "display"), buf, -1); | |
3770 | 1990 |
2956 | 1991 gjab_send(gjc, x); |
2086 | 1992 |
1993 xmlnode_free(x); | |
1994 } | |
1995 | |
4538 | 1996 struct jabber_xfer_data { |
3630 | 1997 struct g_url *url; |
1998 GString *headers; | |
1999 gboolean newline; | |
4538 | 2000 |
2001 char *iq_id; | |
2002 | |
2003 struct jabber_data *jd; | |
3630 | 2004 }; |
2005 | |
4538 | 2006 static void jabber_xfer_init(struct gaim_xfer *xfer) |
2007 { | |
2008 struct jabber_xfer_data *data = xfer->data; | |
2009 gaim_xfer_start(xfer, -1, data->url->address, data->url->port); | |
2010 } | |
2011 | |
2012 static void jabber_xfer_free(struct gaim_xfer *xfer) | |
2013 { | |
2014 struct jabber_xfer_data *data = xfer->data; | |
2015 data->jd->file_transfers = g_slist_remove(data->jd->file_transfers, xfer); | |
2016 | |
2017 g_string_free(data->headers, TRUE); | |
2018 g_free(data->url); | |
2019 g_free(data->iq_id); | |
2020 g_free(data); | |
2021 | |
2022 xfer->data = NULL; | |
3630 | 2023 } |
2024 | |
4538 | 2025 static void jabber_xfer_end(struct gaim_xfer *xfer) |
2026 { | |
2027 struct jabber_xfer_data *data = xfer->data; | |
2028 xmlnode x; | |
2029 | |
2030 x = xmlnode_new_tag("iq"); | |
2031 xmlnode_put_attrib(x, "type", "result"); | |
2032 xmlnode_put_attrib(x, "to", xfer->who); | |
2033 xmlnode_put_attrib(x, "id", data->iq_id); | |
2034 | |
2035 gjab_send(data->jd->gjc, x); | |
2036 | |
2037 xmlnode_free(x); | |
2038 | |
2039 jabber_xfer_free(xfer); | |
2040 } | |
2041 | |
2042 static void jabber_xfer_start(struct gaim_xfer *xfer) | |
2043 { | |
2044 struct jabber_xfer_data *data = xfer->data; | |
2045 char *buf = g_strdup_printf("GET /%s HTTP/1.1\r\nHost: %s\r\n\r\n", | |
2046 data->url->page, data->url->address); | |
2047 write(xfer->fd, buf, strlen(buf)); | |
2048 g_free(buf); | |
2049 } | |
2050 | |
2051 static size_t jabber_xfer_read(char **buffer, struct gaim_xfer *xfer) { | |
2052 struct jabber_xfer_data *data = xfer->data; | |
3630 | 2053 char test; |
5435 | 2054 int size; |
4538 | 2055 |
2056 if(read(xfer->fd, &test, sizeof(test)) > 0) { | |
2057 data->headers = g_string_append_c(data->headers, test); | |
2058 if(test == '\r') | |
2059 return 0; | |
2060 if(test == '\n') { | |
2061 if(data->newline) { | |
2062 gchar *lenstr = strstr(data->headers->str, "Content-Length: "); | |
2063 if(lenstr) { | |
5435 | 2064 sscanf(lenstr, "Content-Length: %d", &size); |
4538 | 2065 gaim_xfer_set_size(xfer, size); |
2066 } | |
2067 gaim_xfer_set_read_fnc(xfer, NULL); | |
2068 return 0; | |
2069 } else | |
2070 data->newline = TRUE; | |
2071 return 0; | |
3630 | 2072 } |
4538 | 2073 data->newline = FALSE; |
2074 return 0; | |
3630 | 2075 } |
4538 | 2076 return 0; |
3630 | 2077 } |
2078 | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
2079 static void jabber_xfer_cancel_send(struct gaim_xfer *xfer) { |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
2080 } |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
2081 |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
2082 static void jabber_xfer_cancel_recv(struct gaim_xfer *xfer) { |
4538 | 2083 struct jabber_xfer_data *data = xfer->data; |
3630 | 2084 xmlnode x,y; |
2085 | |
2086 x = xmlnode_new_tag("iq"); | |
2087 xmlnode_put_attrib(x, "type", "error"); | |
4538 | 2088 xmlnode_put_attrib(x, "to", xfer->who); |
2089 xmlnode_put_attrib(x, "id", data->iq_id); | |
3630 | 2090 y = xmlnode_insert_tag(x, "error"); |
2091 /* FIXME: need to handle other kinds of errors here */ | |
2092 xmlnode_put_attrib(y, "code", "406"); | |
2093 xmlnode_insert_cdata(y, "File Transfer Refused", -1); | |
2094 | |
4538 | 2095 gjab_send(data->jd->gjc, x); |
3630 | 2096 |
2097 xmlnode_free(x); | |
2098 | |
4538 | 2099 jabber_xfer_free(xfer); |
3630 | 2100 } |
2101 | |
2102 static void jabber_handleoob(gjconn gjc, xmlnode iqnode) { | |
4538 | 2103 struct jabber_xfer_data *xfer_data; |
3630 | 2104 struct jabber_data *jd = GJ_GC(gjc)->proto_data; |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
2105 struct gaim_xfer *xfer; |
3630 | 2106 char *msg = NULL; |
4538 | 2107 char *filename; |
3630 | 2108 xmlnode querynode = xmlnode_get_tag(iqnode, "query"); |
2109 xmlnode urlnode,descnode; | |
2110 | |
2111 if(!querynode) | |
2112 return; | |
2113 urlnode = xmlnode_get_tag(querynode, "url"); | |
2114 if(!urlnode) | |
2115 return; | |
2116 descnode = xmlnode_get_tag(querynode, "desc"); | |
2117 if(descnode) | |
2118 msg = xmlnode_get_data(descnode); | |
2119 | |
4538 | 2120 xfer_data = g_new0(struct jabber_xfer_data, 1); |
2121 xfer_data->url = parse_url(xmlnode_get_data(urlnode)); | |
2122 xfer_data->jd = jd; | |
2123 xfer_data->headers = g_string_new(""); | |
2124 xfer_data->iq_id = g_strdup(xmlnode_get_attrib(iqnode, "id")); | |
2125 | |
2126 xfer = gaim_xfer_new(GJ_GC(gjc)->account, GAIM_XFER_RECEIVE, | |
2127 xmlnode_get_attrib(iqnode, "from")); | |
2128 xfer->data = xfer_data; | |
2129 | |
2130 filename = g_strdup(g_strrstr(xfer_data->url->page, "/")); | |
2131 if(!filename) | |
2132 filename = g_strdup(xfer_data->url->page); | |
2133 | |
2134 gaim_xfer_set_filename(xfer, filename); | |
2135 | |
2136 g_free(filename); | |
2137 | |
2138 gaim_xfer_set_init_fnc(xfer, jabber_xfer_init); | |
2139 gaim_xfer_set_end_fnc(xfer, jabber_xfer_end); | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
2140 gaim_xfer_set_cancel_send_fnc(xfer, jabber_xfer_cancel_send); |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
2141 gaim_xfer_set_cancel_recv_fnc(xfer, jabber_xfer_cancel_recv); |
4538 | 2142 gaim_xfer_set_read_fnc(xfer, jabber_xfer_read); |
2143 gaim_xfer_set_start_fnc(xfer, jabber_xfer_start); | |
2144 | |
2145 jd->file_transfers = g_slist_append(jd->file_transfers, xfer); | |
2146 | |
2147 gaim_xfer_request(xfer); | |
3630 | 2148 } |
2149 | |
2956 | 2150 static void jabber_handlelast(gjconn gjc, xmlnode iqnode) { |
3630 | 2151 xmlnode x, querytag; |
2086 | 2152 char *id, *from; |
2956 | 2153 struct jabber_data *jd = GJ_GC(gjc)->proto_data; |
2086 | 2154 char idle_time[32]; |
3630 | 2155 |
2086 | 2156 id = xmlnode_get_attrib(iqnode, "id"); |
2157 from = xmlnode_get_attrib(iqnode, "from"); | |
2158 | |
2159 x = jutil_iqnew(JPACKET__RESULT, "jabber:iq:last"); | |
2160 | |
2161 xmlnode_put_attrib(x, "to", from); | |
2162 xmlnode_put_attrib(x, "id", id); | |
2163 querytag = xmlnode_get_tag(x, "query"); | |
2164 g_snprintf(idle_time, sizeof idle_time, "%ld", jd->idle ? time(NULL) - jd->idle : 0); | |
2165 xmlnode_put_attrib(querytag, "seconds", idle_time); | |
2166 | |
2956 | 2167 gjab_send(gjc, x); |
2086 | 2168 xmlnode_free(x); |
2169 } | |
2170 | |
2956 | 2171 /* |
2172 * delete == TRUE: delete found entry | |
2173 * | |
2174 * returns pointer to (local) copy of value if found, NULL otherwise | |
2175 * | |
2176 * Note: non-reentrant! Local static storage re-used on subsequent calls. | |
2177 * If you're going to need to keep the returned value, make a copy! | |
2178 */ | |
2179 static gchar *jabber_track_queries(GHashTable *queries, gchar *key, gboolean delete) | |
2180 { | |
2181 gpointer my_key, my_val; | |
2182 static gchar *ret_val = NULL; | |
2183 | |
2184 if(ret_val != NULL) { | |
2185 g_free(ret_val); | |
2186 ret_val = NULL; | |
2187 } | |
2188 | |
2189 /* self-protection */ | |
2190 if(queries != NULL && key != NULL) { | |
2191 if(g_hash_table_lookup_extended(queries, key, &my_key, &my_val)) { | |
2192 ret_val = g_strdup((gchar *) my_val); | |
2193 if(delete) { | |
2194 g_hash_table_remove(queries, key); | |
2195 g_free(my_key); | |
2196 g_free(my_val); | |
2197 } | |
2198 } | |
2199 } | |
2200 | |
2201 return(ret_val); | |
2202 } | |
2203 | |
2204 static void jabber_handlepacket(gjconn gjc, jpacket p) | |
2086 | 2205 { |
5994 | 2206 char *id, *from, *to; |
2086 | 2207 switch (p->type) { |
2208 case JPACKET_MESSAGE: | |
2956 | 2209 jabber_handlemessage(gjc, p); |
2086 | 2210 break; |
2211 case JPACKET_PRESENCE: | |
2956 | 2212 jabber_handlepresence(gjc, p); |
2086 | 2213 break; |
2214 case JPACKET_IQ: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2215 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2216 "jpacket_subtype: %d\n", jpacket_subtype(p)); |
2086 | 2217 |
2956 | 2218 id = xmlnode_get_attrib(p->x, "id"); |
2219 if (id != NULL && !strcmp(id, IQID_AUTH)) { | |
2220 jabber_handleauthresp(gjc, p); | |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
2221 break; |
2086 | 2222 } |
2223 | |
2224 if (jpacket_subtype(p) == JPACKET__SET) { | |
2956 | 2225 xmlnode querynode; |
2226 querynode = xmlnode_get_tag(p->x, "query"); | |
5994 | 2227 from = xmlnode_get_attrib(p->x, "from"); |
2228 to = xmlnode_get_attrib(p->x, "to"); | |
6004 | 2229 if (NSCHECK(querynode, "jabber:iq:roster") && (!from || !strcmp(from, to))) { |
2956 | 2230 jabber_handlebuddy(gjc, xmlnode_get_firstchild(querynode)); |
3630 | 2231 } else if(NSCHECK(querynode, "jabber:iq:oob")) { |
2232 jabber_handleoob(gjc, p->x); | |
2956 | 2233 } |
2086 | 2234 } else if (jpacket_subtype(p) == JPACKET__GET) { |
3770 | 2235 xmlnode querynode; |
2086 | 2236 querynode = xmlnode_get_tag(p->x, "query"); |
3770 | 2237 if (NSCHECK(querynode, NS_VERSION)) { |
2238 jabber_handleversion(gjc, p->x); | |
2086 | 2239 } else if (NSCHECK(querynode, NS_TIME)) { |
3770 | 2240 jabber_handletime(gjc, p->x); |
2086 | 2241 } else if (NSCHECK(querynode, "jabber:iq:last")) { |
3770 | 2242 jabber_handlelast(gjc, p->x); |
2086 | 2243 } |
2244 } else if (jpacket_subtype(p) == JPACKET__RESULT) { | |
2245 xmlnode querynode, vcard; | |
2246 char *xmlns, *from; | |
2247 | |
2956 | 2248 /* |
2249 * TBD: ISTM maybe this part could use a serious re-work? | |
2250 */ | |
2086 | 2251 from = xmlnode_get_attrib(p->x, "from"); |
2252 querynode = xmlnode_get_tag(p->x, "query"); | |
2253 vcard = xmlnode_get_tag(p->x, "vCard"); | |
2316
ebb5ecb2cd5b
[gaim-migrate @ 2326]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
2254 if (!vcard) |
ebb5ecb2cd5b
[gaim-migrate @ 2326]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
2255 vcard = xmlnode_get_tag(p->x, "VCARD"); |
2086 | 2256 |
2257 if (NSCHECK(querynode, NS_ROSTER)) { | |
2956 | 2258 jabber_handleroster(gjc, querynode); |
2086 | 2259 } else if (NSCHECK(querynode, NS_VCARD)) { |
2956 | 2260 jabber_track_queries(gjc->queries, id, TRUE); /* delete query track */ |
3770 | 2261 jabber_handlevcard(gjc, querynode, from); |
2316
ebb5ecb2cd5b
[gaim-migrate @ 2326]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
2262 } else if (vcard) { |
2956 | 2263 jabber_track_queries(gjc->queries, id, TRUE); /* delete query track */ |
2264 jabber_handlevcard(gjc, vcard, from); | |
2265 } else if((xmlns = xmlnode_get_attrib(querynode, "xmlns")) != NULL) { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2266 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2267 "jabber:iq:query: %s\n", xmlns); |
2086 | 2268 } else { |
2956 | 2269 char *val; |
2270 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2271 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2272 "jabber:iq: %s\n", xmlnode2str(p->x)); |
2956 | 2273 |
2274 /* handle "null" query results */ | |
2275 if((val = jabber_track_queries(gjc->queries, id, TRUE)) != NULL) { | |
2276 if(strcmp((char *) val, "vCard") == 0) { | |
2277 /* | |
2278 * No actual vCard, but there's other stuff. This | |
2279 * way the user always gets some kind of response. | |
2280 */ | |
2281 jabber_handlevcard(gjc, NULL, from); | |
3257 | 2282 } else if(!strcmp((char *) val, "change_password")) { |
2283 char buf[BUF_LONG]; | |
3311 | 2284 sprintf(buf, _("Password successfully changed.")); |
3257 | 2285 |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2286 gaim_notify_info(GJ_GC(gjc), NULL, buf, NULL); |
2956 | 2287 } |
2288 } | |
2086 | 2289 } |
2290 | |
2291 } else if (jpacket_subtype(p) == JPACKET__ERROR) { | |
2292 xmlnode xerr; | |
2293 char *from, *errmsg = NULL; | |
2294 int errcode = 0; | |
2295 | |
2296 from = xmlnode_get_attrib(p->x, "from"); | |
2297 xerr = xmlnode_get_tag(p->x, "error"); | |
2298 if (xerr) { | |
2299 errmsg = xmlnode_get_data(xerr); | |
2300 if (xmlnode_get_attrib(xerr, "code")) | |
2301 errcode = atoi(xmlnode_get_attrib(xerr, "code")); | |
2302 } | |
2303 | |
3427 | 2304 from = g_strdup_printf("Jabber Error %d (%s)", errcode, from); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2305 gaim_notify_error(GJ_GC(gjc), NULL, from, errmsg); |
2086 | 2306 g_free(from); |
2307 | |
2308 } | |
2309 | |
2310 break; | |
2311 case JPACKET_S10N: | |
2956 | 2312 jabber_handles10n(gjc, p); |
2086 | 2313 break; |
2314 default: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2315 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2316 "jabber: packet type %d (%s)\n", p->type, xmlnode2str(p->x)); |
2086 | 2317 } |
2318 | |
2319 xmlnode_free(p->x); | |
2320 | |
2321 return; | |
2322 } | |
2323 | |
2956 | 2324 static void jabber_handlestate(gjconn gjc, int state) |
2086 | 2325 { |
2326 switch (state) { | |
2327 case JCONN_STATE_OFF: | |
3074 | 2328 if(gjc->was_connected) { |
5572 | 2329 gaim_connection_error(GJ_GC(gjc), _("Connection lost")); |
3074 | 2330 } else { |
5572 | 2331 gaim_connection_error(GJ_GC(gjc), _("Unable to connect")); |
3074 | 2332 } |
2086 | 2333 break; |
2334 case JCONN_STATE_CONNECTED: | |
3074 | 2335 gjc->was_connected = 1; |
5572 | 2336 gaim_connection_update_progress(GJ_GC(gjc), _("Connected"), 2, JABBER_CONNECT_STEPS); |
2086 | 2337 break; |
2338 case JCONN_STATE_ON: | |
5572 | 2339 gaim_connection_update_progress(GJ_GC(gjc), _("Requesting Authentication Method"), 3, JABBER_CONNECT_STEPS); |
2956 | 2340 gjab_reqauth(gjc); |
2086 | 2341 break; |
2342 default: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2343 gaim_debug(GAIM_DEBUG_MISC, "jabber", "state change: %d\n", state); |
2086 | 2344 } |
2345 return; | |
2346 } | |
2347 | |
5572 | 2348 static void jabber_login(GaimAccount *account) |
2086 | 2349 { |
5572 | 2350 GaimConnection *gc = gaim_account_get_connection(account); |
2086 | 2351 struct jabber_data *jd = gc->proto_data = g_new0(struct jabber_data, 1); |
4917 | 2352 char *loginname = create_valid_jid(account->username, DEFAULT_SERVER, "Gaim"); |
2086 | 2353 |
5174 | 2354 gc->flags |= OPT_CONN_HTML; |
2355 | |
3311 | 2356 jd->buddies = g_hash_table_new(g_str_hash, g_str_equal); |
2956 | 2357 jd->chats = NULL; /* we have no chats yet */ |
2086 | 2358 |
5572 | 2359 gaim_connection_update_progress(gc, _("Connecting"), 1, JABBER_CONNECT_STEPS); |
2086 | 2360 |
4491 | 2361 if (!(jd->gjc = gjab_new(loginname, account->password, gc))) { |
2086 | 2362 g_free(loginname); |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2363 gaim_debug(GAIM_DEBUG_ERROR, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2364 "unable to connect (jab_new failed)\n"); |
5572 | 2365 gaim_connection_error(gc, _("Unable to connect")); |
2086 | 2366 return; |
2367 } | |
2368 | |
2369 g_free(loginname); | |
2956 | 2370 gjab_state_handler(jd->gjc, jabber_handlestate); |
2371 gjab_packet_handler(jd->gjc, jabber_handlepacket); | |
2372 jd->gjc->queries = g_hash_table_new(g_str_hash, g_str_equal); | |
2373 gjab_start(jd->gjc); | |
2086 | 2374 } |
2375 | |
2376 static gboolean jabber_destroy_hash(gpointer key, gpointer val, gpointer data) { | |
3770 | 2377 g_free(key); |
2086 | 2378 g_free(val); |
2379 return TRUE; | |
2380 } | |
2381 | |
3311 | 2382 static gboolean jabber_destroy_buddy_hash(gpointer key, gpointer val, gpointer data) { |
2383 struct jabber_buddy_data *jbd = val; | |
2384 while (jbd->resources) { | |
2385 g_free(((jab_res_info) ((GSList *)jbd->resources)->data)->name); | |
2386 if(((jab_res_info) ((GSList *)jbd->resources)->data)->away_msg) | |
2387 g_free(((jab_res_info) ((GSList *)jbd->resources)->data)->away_msg); | |
2388 g_free(((GSList *)jbd->resources)->data); | |
2389 jbd->resources = g_slist_remove(jbd->resources, ((GSList *)jbd->resources)->data); | |
2390 | |
2391 } | |
2392 if(jbd->error_msg) | |
2393 g_free(jbd->error_msg); | |
2394 g_free(key); | |
2395 g_free(jbd); | |
2396 return TRUE; | |
2397 } | |
2398 | |
2399 | |
2086 | 2400 static gboolean jabber_free(gpointer data) |
2401 { | |
2956 | 2402 struct jabber_data *jd = data; |
2403 | |
3236 | 2404 if(jd->gjc != NULL) { |
3486 | 2405 g_free(jd->gjc->sid); |
3236 | 2406 gjab_delete(jd->gjc); |
2407 jd->gjc = NULL; | |
2408 } | |
2956 | 2409 g_free(jd); |
2410 | |
2086 | 2411 return FALSE; |
2412 } | |
2413 | |
5572 | 2414 static void jabber_close(GaimConnection *gc) |
2086 | 2415 { |
2416 struct jabber_data *jd = gc->proto_data; | |
2956 | 2417 |
2418 if(jd) { | |
2419 GSList *jcs = jd->chats; | |
2420 | |
2421 /* Free-up the jabber_chat struct allocs and the list */ | |
2422 while (jcs) { | |
3311 | 2423 gaim_jid_free(((struct jabber_chat *)jcs->data)->gjid); |
2956 | 2424 g_free(jcs->data); |
2425 jcs = jcs->next; | |
2426 } | |
2427 g_slist_free(jd->chats); | |
2428 | |
3311 | 2429 /* Free-up the buddy data hash */ |
2430 if(jd->buddies != NULL) | |
2431 { | |
2432 g_hash_table_foreach_remove(jd->buddies, jabber_destroy_buddy_hash, NULL); | |
2433 g_hash_table_destroy(jd->buddies); | |
2434 jd->buddies = NULL; | |
2956 | 2435 } |
2436 | |
2437 /* Free-up the pending queries memories and the list */ | |
3236 | 2438 if(jd->gjc != NULL && jd->gjc->queries != NULL) { |
2956 | 2439 g_hash_table_foreach_remove(jd->gjc->queries, jabber_destroy_hash, NULL); |
2440 g_hash_table_destroy(jd->gjc->queries); | |
2441 jd->gjc->queries = NULL; | |
2442 } | |
2443 } | |
2300
d2686f757d6e
[gaim-migrate @ 2310]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2289
diff
changeset
|
2444 if (gc->inpa) |
d2686f757d6e
[gaim-migrate @ 2310]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2289
diff
changeset
|
2445 gaim_input_remove(gc->inpa); |
2956 | 2446 |
2447 if(jd) { | |
3613 | 2448 g_timeout_add(0, jabber_free, jd); |
3236 | 2449 if(jd->gjc != NULL) |
2450 xmlnode_free(jd->gjc->current); | |
2956 | 2451 } |
2086 | 2452 gc->proto_data = NULL; |
2453 } | |
2454 | |
5572 | 2455 static int jabber_send_typing(GaimConnection *gc, char *who, int typing) |
3311 | 2456 { |
2457 xmlnode x, y; | |
2458 char *realwho; | |
2459 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; | |
2460 jab_res_info jri = jabber_find_resource(gc, who); | |
2461 | |
2462 if(!jri || !jri->has_composing) | |
2463 return 0; | |
2464 | |
2465 if((realwho = get_realwho(gjc, who, FALSE, NULL)) == NULL) | |
2466 return 0; | |
3596 | 2467 |
3311 | 2468 x = xmlnode_new_tag("message"); |
2469 xmlnode_put_attrib(x, "to", realwho); | |
2470 | |
2471 y = xmlnode_insert_tag(x, "x"); | |
2472 xmlnode_put_attrib(y, "xmlns", "jabber:x:event"); | |
2473 | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
2474 if(typing == GAIM_TYPING) |
3311 | 2475 xmlnode_insert_tag(y, "composing"); |
3596 | 2476 |
3311 | 2477 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2478 xmlnode_free(x); | |
2479 g_free(realwho); | |
2480 return JABBER_TYPING_NOTIFY_INT; | |
2481 } | |
2482 | |
5093 | 2483 static void insert_message(xmlnode x, const char *message, gboolean use_xhtml) { |
2484 xmlnode y; | |
5110 | 2485 char *buf = g_strdup_printf("<html xmlns='http://jabber.org/protocol/xhtml-im'><body>%s</body></html>", message); |
2486 char *xhtml, *plain; | |
2487 | |
2488 html_to_xhtml(buf, &xhtml, &plain); | |
2489 g_free(buf); | |
2490 | |
5093 | 2491 y = xmlnode_insert_tag(x, "body"); |
5110 | 2492 xmlnode_insert_cdata(y, plain, -1); |
2493 g_free(plain); | |
5093 | 2494 |
2495 if(use_xhtml) { | |
5110 | 2496 y = xmlnode_str(xhtml, strlen(xhtml)); |
5093 | 2497 if(y) { |
2498 xmlnode_insert_tag_node(x, y); | |
2499 xmlnode_free(y); | |
2500 } else { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2501 gaim_debug(GAIM_DEBUG_ERROR, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2502 "holy cow, html_to_xhtml didn't work right!\n"); |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2503 gaim_debug(GAIM_DEBUG_ERROR, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2504 "the invalid XML: %s\n", xhtml); |
5093 | 2505 } |
2506 } | |
5110 | 2507 g_free(xhtml); |
5093 | 2508 } |
2509 | |
5572 | 2510 static int jabber_send_im(GaimConnection *gc, const char *who, const char *message, int len, int flags) |
2086 | 2511 { |
2512 xmlnode x, y; | |
3311 | 2513 char *thread_id = NULL; |
2956 | 2514 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
5093 | 2515 jab_res_info jri = jabber_find_resource(gc, who); |
2086 | 2516 |
2517 if (!who || !message) | |
2123
56c4382f2909
[gaim-migrate @ 2133]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2112
diff
changeset
|
2518 return 0; |
2086 | 2519 |
2520 x = xmlnode_new_tag("message"); | |
4927 | 2521 xmlnode_put_attrib(x, "to", who); |
2522 | |
2523 thread_id = jabber_get_convo_thread(gjc, who); | |
3311 | 2524 if(thread_id) |
2525 { | |
3769 | 2526 if(strcmp(thread_id, "")) { |
2527 y = xmlnode_insert_tag(x, "thread"); | |
2528 xmlnode_insert_cdata(y, thread_id, -1); | |
2529 } | |
3311 | 2530 g_free(thread_id); |
2531 } | |
2532 | |
2086 | 2533 xmlnode_put_attrib(x, "type", "chat"); |
2534 | |
3311 | 2535 /* let other clients know we support typing notification */ |
2536 y = xmlnode_insert_tag(x, "x"); | |
2537 xmlnode_put_attrib(y, "xmlns", "jabber:x:event"); | |
2538 xmlnode_insert_tag(y, "composing"); | |
2539 | |
2086 | 2540 if (message && strlen(message)) { |
5093 | 2541 insert_message(x, message, jri ? jri->has_xhtml : TRUE); |
2086 | 2542 } |
2543 | |
2956 | 2544 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2086 | 2545 xmlnode_free(x); |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2300
diff
changeset
|
2546 return 1; |
2086 | 2547 } |
2548 | |
3105 | 2549 /* |
2550 * Add/update buddy's roster entry on server | |
3349 | 2551 * |
2552 * If "alias" or "group" are NULL, gets them from Gaim's current buddylist values | |
2553 * for the buddy. | |
3105 | 2554 */ |
5572 | 2555 static void jabber_roster_update(GaimConnection *gc, const char *name, const char *alias, const char *group) |
3105 | 2556 { |
2557 xmlnode x, y; | |
2558 char *realwho; | |
2559 gjconn gjc; | |
2560 struct buddy *buddy = NULL; | |
2561 struct group *buddy_group = NULL; | |
3867 | 2562 const char *my_alias = NULL; |
2563 const char *my_group = NULL; | |
3770 | 2564 |
3105 | 2565 if(gc && gc->proto_data && ((struct jabber_data *)gc->proto_data)->gjc && name) { |
3311 | 2566 gaim_jid gjid; |
3105 | 2567 gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
2568 | |
3311 | 2569 if((realwho = get_realwho(gjc, name, FALSE, &gjid)) == NULL) |
2570 return; | |
2571 | |
2572 /* FIXME: transport */ | |
2573 if(gjid->user == NULL) { | |
2574 g_free(realwho); | |
2575 gaim_jid_free(gjid); | |
2576 return; | |
3105 | 2577 } |
3311 | 2578 gaim_jid_free(gjid); |
3105 | 2579 |
2580 x = jutil_iqnew(JPACKET__SET, NS_ROSTER); | |
2581 y = xmlnode_insert_tag(xmlnode_get_tag(x, "query"), "item"); | |
2582 xmlnode_put_attrib(y, "jid", realwho); | |
2583 | |
4687 | 2584 buddy = gaim_find_buddy(gc->account, realwho); |
4349 | 2585 |
3349 | 2586 /* |
2587 * See if there's an explict (new?) alias for the buddy or we can pull | |
2588 * one out of current Gaim buddylist data for him. | |
2589 */ | |
2590 if(alias && alias[0] != '\0') { | |
2591 my_alias = alias; | |
4705 | 2592 } else if(buddy && buddy->alias) { |
4227 | 2593 my_alias = buddy->alias; |
3349 | 2594 } |
2595 | |
2596 /* If there's an alias for the buddy, it's not 0-length | |
3105 | 2597 * and it doesn't match his JID, add the "name" attribute. |
2598 */ | |
3349 | 2599 if(my_alias != NULL && my_alias[0] != '\0' && strcmp(realwho, my_alias)) |
3311 | 2600 { |
3642 | 2601 xmlnode_put_attrib(y, "name", my_alias); |
3105 | 2602 } |
2603 | |
2604 /* | |
3349 | 2605 * See if there's an explict (new?) group for the buddy or pull |
2606 * one out of current Gaim buddylist data for him. | |
3105 | 2607 */ |
3349 | 2608 if(group && group[0] != '\0') { |
2609 my_group = group; | |
4687 | 2610 } else if((buddy_group = gaim_find_buddys_group(buddy)) != NULL) { |
3349 | 2611 my_group = buddy_group->name; |
2612 } | |
2613 | |
2614 /* | |
2615 * Send what group the buddy's in along with the roster item. | |
2616 */ | |
2617 if(my_group != NULL && my_group[0] != '\0') { | |
2618 xmlnode z = xmlnode_insert_tag(y, "group"); | |
2619 xmlnode_insert_cdata(z, my_group, -1); | |
3105 | 2620 } |
2621 | |
2622 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); | |
2623 | |
2624 xmlnode_free(x); | |
2625 g_free(realwho); | |
2626 } | |
2627 } | |
2628 | |
3136 | 2629 /* |
3349 | 2630 * Add/update buddy's alias on server |
2631 * | |
2632 * This is just a roster update using existing, local buddylist data | |
2633 */ | |
5572 | 2634 static void jabber_alias_buddy(GaimConnection *gc, const char *name, const char *alias) |
3349 | 2635 { |
4269 | 2636 jabber_roster_update(gc, name, alias, NULL); |
3349 | 2637 } |
2638 | |
2639 /* | |
3136 | 2640 * Change buddy's group on server roster |
2641 */ | |
5572 | 2642 static void jabber_group_change(GaimConnection *gc, const char *name, const char *old_group, const char *new_group) |
3136 | 2643 { |
3349 | 2644 if(old_group && new_group && strcmp(old_group, new_group)) |
2645 jabber_roster_update(gc, name, NULL, new_group); | |
2646 } | |
2647 | |
2648 /* | |
2649 * Group rename | |
2650 * | |
2651 * Jabber doesn't have "groups," per se. "Group" is simply a JID attribute. | |
2652 * So we iterate through the list of buddies that are in the group and change | |
2653 * the group attribute for each of them. | |
2654 */ | |
5572 | 2655 static void jabber_rename_group(GaimConnection *gc, |
3867 | 2656 const char *old_group, |
2657 const char *new_group, | |
3349 | 2658 GList *members) |
2659 { | |
2660 if(old_group && new_group && strcmp(old_group, new_group)) | |
2661 while(members) { | |
2662 jabber_group_change(gc, (char *)(members->data), old_group, new_group); | |
2663 members = members->next; | |
2664 } | |
3136 | 2665 } |
2666 | |
5572 | 2667 static void jabber_add_buddy(GaimConnection *gc, const char *name) |
2086 | 2668 { |
3136 | 2669 xmlnode x; |
2086 | 2670 char *realwho; |
2956 | 2671 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
3311 | 2672 gaim_jid gjid; |
5572 | 2673 GaimAccount *account = gaim_connection_get_account(gc); |
2086 | 2674 |
2675 if (!((struct jabber_data *)gc->proto_data)->did_import) | |
2676 return; | |
2677 | |
3311 | 2678 /* |
2679 * If there's no name or the name is ourself | |
2680 */ | |
5572 | 2681 if(!name || !strcmp(gaim_account_get_username(account), name)) |
2086 | 2682 return; |
2683 | |
3311 | 2684 if((realwho = get_realwho(gjc, name, FALSE, &gjid)) == NULL) { |
3427 | 2685 char *msg = g_strdup_printf(_("The user %s is an invalid Jabber I.D. and was " |
2686 "therefore not added."), name); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2687 gaim_notify_error(gc, NULL, _("Unable to add buddy."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2688 _("Jabber Error")); |
3311 | 2689 g_free(msg); |
2690 jabber_remove_gaim_buddy(gc, name); | |
2691 return; | |
2086 | 2692 } |
2693 | |
3311 | 2694 /* FIXME: transport */ |
2695 if(gjid->user == NULL) { | |
2696 g_free(realwho); | |
2697 gaim_jid_free(gjid); | |
2698 return; | |
2699 } | |
2700 gaim_jid_free(gjid); | |
2701 | |
2086 | 2702 x = xmlnode_new_tag("presence"); |
2703 xmlnode_put_attrib(x, "to", realwho); | |
2704 xmlnode_put_attrib(x, "type", "subscribe"); | |
2956 | 2705 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2706 xmlnode_free(x); | |
2086 | 2707 |
3349 | 2708 jabber_roster_update(gc, realwho, NULL, NULL); |
3105 | 2709 |
2086 | 2710 g_free(realwho); |
2711 } | |
2712 | |
5572 | 2713 static void jabber_remove_buddy(GaimConnection *gc, char *name, char *group) |
2086 | 2714 { |
3048 | 2715 xmlnode x; |
2086 | 2716 char *realwho; |
2956 | 2717 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
2086 | 2718 |
3311 | 2719 if(!name || (realwho = get_realwho(gjc, name, FALSE, NULL)) == NULL) |
2086 | 2720 return; |
2721 | |
2956 | 2722 x = xmlnode_new_tag("presence"); |
2723 xmlnode_put_attrib(x, "to", realwho); | |
2724 xmlnode_put_attrib(x, "type", "unsubscribe"); | |
2725 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); | |
2086 | 2726 g_free(realwho); |
2727 xmlnode_free(x); | |
2728 } | |
2729 | |
4916 | 2730 #if 0 /* Faceprint! Look here! */ |
3314 | 2731 /* |
2732 * Remove a buddy item from the roster entirely | |
2733 */ | |
5572 | 2734 static void jabber_remove_buddy_roster_item(GaimConnection *gc, char *name) |
3314 | 2735 { |
3340 | 2736 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
3314 | 2737 char *realwho; |
3340 | 2738 |
2739 if((realwho = get_realwho(gjc, name, FALSE, NULL)) != NULL) { | |
2740 xmlnode x = jutil_iqnew(JPACKET__SET, NS_ROSTER); | |
2741 xmlnode y = xmlnode_insert_tag(xmlnode_get_tag(x, "query"), "item"); | |
2742 xmlnode_put_attrib(y, "jid", realwho); | |
2743 xmlnode_put_attrib(y, "subscription", "remove"); | |
2744 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); | |
2745 g_free(realwho); | |
2746 xmlnode_free(x); | |
2747 } | |
2748 } | |
4916 | 2749 #endif |
3340 | 2750 |
2751 /* | |
2752 * Unsubscribe a buddy from our presence | |
2753 */ | |
5572 | 2754 static void jabber_unsubscribe_buddy_from_us(GaimConnection *gc, const char *name) |
3340 | 2755 { |
2756 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; | |
2757 char *realwho; | |
2758 | |
2759 if((realwho = get_realwho(gjc, name, FALSE, NULL)) != NULL) { | |
2760 xmlnode g = xmlnode_new_tag("presence"); | |
2761 xmlnode_put_attrib(g, "to", realwho); | |
2762 xmlnode_put_attrib(g, "type", "unsubscribed"); | |
2763 gjab_send(gjc, g); | |
2764 xmlnode_free(g); | |
2765 } | |
2766 } | |
2767 | |
2768 /* | |
2769 * Common code for setting ourselves invisible/visible to buddy | |
2770 */ | |
5572 | 2771 static void jabber_invisible_to_buddy_common(GaimConnection *gc, const char *name, gboolean invisible) |
3340 | 2772 { |
3314 | 2773 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
3340 | 2774 char *realwho; |
2775 | |
2776 if((realwho = get_realwho(gjc, name, FALSE, NULL)) != NULL) { | |
5135 | 2777 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, realwho, TRUE); |
3340 | 2778 xmlnode g = xmlnode_new_tag("presence"); |
2779 | |
2780 xmlnode_put_attrib(g, "to", realwho); | |
2781 | |
2782 if(invisible) | |
2783 xmlnode_put_attrib(g, "type", "invisible"); | |
2784 | |
2785 gjab_send(gjc, g); | |
2786 | |
2787 g_free(realwho); | |
2788 xmlnode_free(g); | |
2789 | |
2790 if(jbd) { | |
2791 if(invisible) { | |
2792 jbd->invisible |= JABBER_BUD_INVIS; | |
2793 } else { | |
2794 jbd->invisible &= ~JABBER_BUD_INVIS; | |
2795 } | |
2796 } | |
2797 } | |
2798 } | |
2799 | |
2800 /* | |
2801 * Make ourselves temporarily invisible to a buddy | |
2802 */ | |
5572 | 2803 static void jabber_invisible_to_buddy(GaimConnection *gc, const char *name) |
3340 | 2804 { |
2805 jabber_invisible_to_buddy_common(gc, name, TRUE); | |
2806 } | |
2807 | |
2808 /* | |
2809 * Make ourselves visible to a buddy | |
2810 */ | |
5572 | 2811 static void jabber_visible_to_buddy(GaimConnection *gc, const char *name) |
3340 | 2812 { |
2813 jabber_invisible_to_buddy_common(gc, name, FALSE); | |
2814 } | |
2815 | |
2816 /* | |
2817 * Function used by the g_hash_table_foreach() in invisible_to_all_buddies() to | |
2818 * actually set the status. | |
2819 * | |
2820 * key is unused | |
2821 * value is the pointer to the jabber_buddy_data struct | |
2822 * data is gboolean: TRUE (invisible) or FALSE (not invisible) | |
2823 */ | |
2824 static void set_invisible_to_buddy_status(gpointer key, gpointer val, gpointer data) { | |
2825 struct jabber_buddy_data *jbd = val; | |
2826 gboolean invisible = (gboolean) data; | |
2827 | |
2828 if(jbd) { | |
2829 if(invisible) { | |
2830 jbd->invisible = JABBER_SERV_INVIS | JABBER_BUD_INVIS; | |
2831 } else { | |
2832 /* | |
2833 * If we've asserted server-level invisibility, cancelling | |
2834 * it removes explicit buddy invisibility settings too. | |
2835 */ | |
2836 if(jbd->invisible & JABBER_SERV_INVIS) | |
2837 jbd->invisible = JABBER_NOT_INVIS; | |
2838 } | |
2839 } | |
2840 } | |
2841 | |
2842 /* | |
2843 * Show we've set ourselves invisible/visible to all buddies on the server | |
2844 * | |
2845 * Used when we set server-wide invisibility so that individual buddy menu | |
2846 * entries show the proper option. | |
2847 */ | |
5572 | 2848 static void invisible_to_all_buddies(GaimConnection *gc, gboolean invisible) |
3340 | 2849 { |
2850 struct jabber_data *jd = gc->proto_data; | |
2851 | |
2852 if(jd->buddies != NULL) | |
2853 g_hash_table_foreach(jd->buddies, set_invisible_to_buddy_status, (gpointer) invisible); | |
3314 | 2854 } |
2855 | |
5572 | 2856 static const char *jabber_list_icon(GaimAccount *a, struct buddy *b) |
2086 | 2857 { |
4687 | 2858 return "jabber"; |
2859 } | |
4916 | 2860 |
2861 static void jabber_list_emblems(struct buddy *b, char **se, char **sw, char **nw, char **ne) | |
2862 { | |
5135 | 2863 struct jabber_buddy_data *jbd = jabber_find_buddy(b->account->gc, b->name, FALSE); |
2864 | |
2865 if(!GAIM_BUDDY_IS_ONLINE(b)) { | |
2866 if (jbd && jbd->error_msg) | |
4927 | 2867 *nw = "error"; |
5135 | 2868 |
2869 if(jbd && (jbd->subscription & JABBER_SUB_PENDING || | |
2870 !(jbd->subscription & JABBER_SUB_TO))) | |
2871 *se = "notauthorized"; | |
2872 else | |
2873 *se = "offline"; | |
2874 | |
4916 | 2875 } else { |
2876 switch (b->uc) { | |
2877 case UC_AWAY: | |
2878 *se = "away"; | |
2879 break; | |
2880 case UC_CHAT: | |
2881 *se = "chat"; | |
2882 break; | |
2883 case UC_XA: | |
2884 *se = "extendedaway"; | |
2885 break; | |
2886 case UC_DND: | |
2887 *se = "dnd"; | |
2888 break; | |
2889 case UC_ERROR: | |
2890 *se = "error"; | |
2891 break; | |
2892 } | |
2086 | 2893 } |
4916 | 2894 } |
2086 | 2895 |
5572 | 2896 static GList *jabber_chat_info(GaimConnection *gc) |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2897 { |
2956 | 2898 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
2899 | |
2900 static char *confserv = NULL; /* this pointer must be persistent */ | |
2901 gchar *server; | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2902 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2903 GList *m = NULL; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2904 struct proto_chat_entry *pce; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2905 |
2956 | 2906 /* This is a scientific wild-ass guess... |
2907 * | |
2908 * If there are more than two "components" to the current server name, | |
2909 * lop-off the left-most component and replace with "conference." | |
2910 */ | |
2911 if(confserv != NULL) { | |
2912 g_free(confserv); /* dispose of the old value */ | |
2913 } | |
2914 | |
2915 if((server = g_strdup(gjc->user->server)) == NULL) { | |
2916 confserv = g_strdup(DEFAULT_GROUPCHAT); | |
2917 } else { | |
2918 gchar **splits, **index; | |
2919 gchar *tmp; | |
2920 int cnt = 0; | |
2921 | |
2922 | |
2923 index = splits = g_strsplit(server, ".", -1); /* split the connected server */ | |
2924 | |
2925 while(*(index++)) /* index to the end--counting the parts */ | |
2926 ++cnt; | |
2927 | |
2928 /* | |
2929 * If we've more than two parts, point to the second part. Else point | |
2930 * to the start. | |
2931 */ | |
2932 if(cnt > 2) { | |
2933 index -= cnt; | |
2934 } else { | |
2935 index = splits; | |
2936 } | |
2937 | |
2938 /* Put it together */ | |
2939 confserv = g_strjoin(".", "conference", (tmp = g_strjoinv(".", index)), NULL); | |
2940 | |
2941 g_free(server); /* we don't need this stuff no more */ | |
2942 g_free(tmp); | |
2943 g_strfreev(splits); | |
2944 } | |
2945 | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2946 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2947 pce->label = _("Room:"); |
5234 | 2948 pce->identifier = "room"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2949 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2950 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2951 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2952 pce->label = _("Server:"); |
5234 | 2953 pce->identifier = "server"; |
2956 | 2954 pce->def = confserv; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2955 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2956 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2957 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2958 pce->label = _("Handle:"); |
5234 | 2959 pce->identifier = "handle"; |
2956 | 2960 pce->def = gjc->user->user; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2961 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2962 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2963 return m; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2964 } |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2965 |
5572 | 2966 static void jabber_join_chat(GaimConnection *gc, GHashTable *data) |
2086 | 2967 { |
2968 xmlnode x; | |
5234 | 2969 char *room, *server, *handle; |
2086 | 2970 char *realwho; |
2956 | 2971 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
2972 GSList *jcs = ((struct jabber_data *)gc->proto_data)->chats; | |
2086 | 2973 struct jabber_chat *jc; |
3311 | 2974 gaim_jid gjid; |
2086 | 2975 |
5234 | 2976 room = g_hash_table_lookup(data, "room"); |
2977 server = g_hash_table_lookup(data, "server"); | |
2978 handle = g_hash_table_lookup(data, "handle"); | |
2979 | |
2980 if (!room || !server || !handle) | |
2086 | 2981 return; |
2982 | |
5234 | 2983 realwho = create_valid_jid(room, server, handle); |
2984 gaim_debug(GAIM_DEBUG_INFO, "jabber", "%s\n", realwho); | |
2086 | 2985 |
3311 | 2986 if((gjid = gaim_jid_new(realwho)) == NULL) { |
3427 | 2987 char *msg = g_strdup_printf("The Jabber I.D. %s is invalid.", realwho); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2988 gaim_notify_error(gc, NULL, _("Unable to join chat"), msg); |
3236 | 2989 g_free(msg); |
3311 | 2990 g_free(realwho); |
3236 | 2991 return; |
2992 } | |
2956 | 2993 |
3311 | 2994 if((jc = find_any_chat(gc, gjid)) != NULL) { |
2956 | 2995 switch(jc->state) { |
2996 case JCS_PENDING: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2997 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2998 "attempt to re-join already pending Jabber chat! (ignoring)\n"); |
2956 | 2999 g_free(realwho); /* yuck! */ |
3311 | 3000 gaim_jid_free(gjid); |
2956 | 3001 return; |
3002 case JCS_ACTIVE: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3003 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3004 "attempt to re-join already active Jabber chat! (ignoring)\n"); |
2956 | 3005 g_free(realwho); /* yuck! */ |
3311 | 3006 gaim_jid_free(gjid); |
2956 | 3007 return; |
3008 case JCS_CLOSED: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3009 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3010 "rejoining previously closed Jabber chat\n"); |
2956 | 3011 break; |
3012 default: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3013 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3014 "found Jabber chat in unknown state! (ignoring)\n"); |
2956 | 3015 g_free(realwho); /* yuck! */ |
3311 | 3016 gaim_jid_free(gjid); |
2956 | 3017 return; |
3018 } | |
3019 } else { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3020 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3021 "joining completely new Jabber chat\n"); |
2956 | 3022 jc = g_new0(struct jabber_chat, 1); |
3311 | 3023 jc->gjid = gjid; |
2956 | 3024 jc->gc = gc; |
3025 ((struct jabber_data *)gc->proto_data)->chats = g_slist_append(jcs, jc); | |
4687 | 3026 // add_buddy(gc->account, _("Chats"), realwho, realwho); |
2956 | 3027 } |
3028 | |
3029 jc->state = JCS_PENDING; | |
3030 | |
2086 | 3031 x = jutil_presnew(0, realwho, NULL); |
2956 | 3032 gjab_send(gjc, x); |
2086 | 3033 xmlnode_free(x); |
3034 g_free(realwho); | |
3035 } | |
3036 | |
5572 | 3037 static void jabber_chat_invite(GaimConnection *gc, int id, const char *message, const char *name) |
2086 | 3038 { |
3039 xmlnode x, y; | |
3040 struct jabber_data *jd = gc->proto_data; | |
2956 | 3041 gjconn gjc = jd->gjc; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
3042 struct jabber_chat *jc = NULL; |
2086 | 3043 char *realwho, *subject; |
3044 | |
3311 | 3045 if(!name || (realwho = get_realwho(gjc, name, FALSE, NULL)) == NULL) |
2086 | 3046 return; |
3047 | |
3048 /* find which chat we're inviting to */ | |
2956 | 3049 if(jabber_find_chat_by_convo_id(gc, id, &jc) != 0) |
2086 | 3050 return; |
3051 | |
3052 x = xmlnode_new_tag("message"); | |
3053 xmlnode_put_attrib(x, "to", realwho); | |
3311 | 3054 |
2086 | 3055 g_free(realwho); |
3056 | |
3057 y = xmlnode_insert_tag(x, "x"); | |
3058 xmlnode_put_attrib(y, "xmlns", "jabber:x:conference"); | |
3311 | 3059 subject = g_strdup_printf("%s@%s", jc->gjid->user, jc->gjid->server); |
2086 | 3060 xmlnode_put_attrib(y, "jid", subject); |
3061 g_free(subject); | |
3062 | |
3063 if (message && strlen(message)) { | |
5093 | 3064 insert_message(x, message, FALSE); |
2086 | 3065 } |
3066 | |
2956 | 3067 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2086 | 3068 xmlnode_free(x); |
3069 } | |
3070 | |
5572 | 3071 static void jabber_chat_leave(GaimConnection *gc, int id) |
2086 | 3072 { |
3073 struct jabber_data *jd = gc->proto_data; | |
2956 | 3074 gjconn gjc = jd->gjc; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
3075 struct jabber_chat *jc = NULL; |
3311 | 3076 char *chatname; |
2086 | 3077 xmlnode x; |
3078 | |
2956 | 3079 /* Find out which chat we're leaving */ |
3080 if(jabber_find_chat_by_convo_id(gc, id, &jc) != 0) | |
2086 | 3081 return; |
3082 | |
3311 | 3083 chatname = g_strdup_printf("%s@%s", jc->gjid->user, jc->gjid->server); |
3084 x = jutil_presnew(0, chatname, NULL); | |
3085 g_free(chatname); | |
2086 | 3086 xmlnode_put_attrib(x, "type", "unavailable"); |
2956 | 3087 gjab_send(gjc, x); |
2086 | 3088 xmlnode_free(x); |
3089 jc->b = NULL; | |
3090 } | |
3091 | |
5572 | 3092 static int jabber_chat_send(GaimConnection *gc, int id, char *message) |
2086 | 3093 { |
3094 xmlnode x, y; | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
3095 struct jabber_chat *jc = NULL; |
2086 | 3096 char *chatname; |
2956 | 3097 int retval = 0; |
3098 | |
3099 /* Find out which chat we're sending to */ | |
3100 if((retval = jabber_find_chat_by_convo_id(gc, id, &jc)) != 0) | |
3101 return(retval); | |
2086 | 3102 |
3103 x = xmlnode_new_tag("message"); | |
3311 | 3104 xmlnode_put_attrib(x, "from", jc->gjid->full); |
3105 chatname = g_strdup_printf("%s@%s", jc->gjid->user, jc->gjid->server); | |
2086 | 3106 xmlnode_put_attrib(x, "to", chatname); |
3107 g_free(chatname); | |
3108 xmlnode_put_attrib(x, "type", "groupchat"); | |
3109 | |
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3110 if (message && strlen(message) > strlen("/topic ") && |
4793 | 3111 !g_ascii_strncasecmp(message, "/topic ", strlen("/topic "))) { |
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3112 char buf[8192]; |
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3113 y = xmlnode_insert_tag(x, "subject"); |
3642 | 3114 xmlnode_insert_cdata(y, message + strlen("/topic "), -1); |
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3115 y = xmlnode_insert_tag(x, "body"); |
3642 | 3116 g_snprintf(buf, sizeof(buf), "/me has changed the subject to: %s", message + strlen("/topic")); |
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3117 xmlnode_insert_cdata(y, buf, -1); |
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3118 } else if (message && strlen(message)) { |
5093 | 3119 insert_message(x, message, FALSE); |
2086 | 3120 } |
3121 | |
2956 | 3122 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2086 | 3123 xmlnode_free(x); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3124 return 0; |
2086 | 3125 } |
3126 | |
5572 | 3127 static void jabber_chat_whisper(GaimConnection *gc, int id, char *who, char *message) |
2086 | 3128 { |
5093 | 3129 xmlnode x; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
3130 struct jabber_chat *jc = NULL; |
2086 | 3131 char *chatname; |
3132 | |
2956 | 3133 /* Find out which chat we're whispering to */ |
3134 if(jabber_find_chat_by_convo_id(gc, id, &jc) != 0) | |
2086 | 3135 return; |
3136 | |
3137 x = xmlnode_new_tag("message"); | |
3311 | 3138 xmlnode_put_attrib(x, "from", jc->gjid->full); |
3139 chatname = g_strdup_printf("%s@%s/%s", jc->gjid->user, jc->gjid->server, who); | |
2086 | 3140 xmlnode_put_attrib(x, "to", chatname); |
3141 g_free(chatname); | |
3142 xmlnode_put_attrib(x, "type", "normal"); | |
3143 | |
3144 if (message && strlen(message)) { | |
5093 | 3145 insert_message(x, message, FALSE); |
2086 | 3146 } |
3147 | |
2956 | 3148 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2086 | 3149 xmlnode_free(x); |
3150 } | |
3151 | |
3152 static char *jabber_normalize(const char *s) | |
3153 { | |
3154 static char buf[BUF_LEN]; | |
3155 char *t, *u; | |
3156 int x = 0; | |
3157 | |
3158 g_return_val_if_fail((s != NULL), NULL); | |
3159 | |
2956 | 3160 /* Somebody called us with s == NULL once... */ |
3161 if(s == NULL) { | |
3162 return(NULL); | |
3163 } else { | |
4793 | 3164 u = t = g_utf8_strdown(s, -1); |
2956 | 3165 |
3166 while (*t && (x < BUF_LEN - 1)) { | |
3167 if (*t != ' ') | |
3168 buf[x++] = *t; | |
3169 t++; | |
3170 } | |
3171 buf[x] = '\0'; | |
3172 g_free(u); | |
3173 | |
3174 if (!strchr(buf, '@')) { | |
4927 | 3175 strcat(buf, "@" DEFAULT_SERVER); /* this isn't always right, but eh */ |
2956 | 3176 } else if ((u = strchr(strchr(buf, '@'), '/')) != NULL) { |
3177 *u = '\0'; | |
3178 } | |
3179 | |
3180 return buf; | |
2086 | 3181 } |
3182 } | |
3183 | |
5572 | 3184 static void jabber_get_info(GaimConnection *gc, const char *who) { |
2086 | 3185 xmlnode x; |
3186 char *id; | |
2956 | 3187 char *realwho; |
2086 | 3188 struct jabber_data *jd = gc->proto_data; |
2956 | 3189 gjconn gjc = jd->gjc; |
2086 | 3190 |
3311 | 3191 if((realwho = get_realwho(gjc, who, TRUE, NULL)) == NULL) |
3192 return; | |
3193 | |
2086 | 3194 x = jutil_iqnew(JPACKET__GET, NS_VCARD); |
2956 | 3195 xmlnode_put_attrib(x, "to", realwho); |
3311 | 3196 |
2956 | 3197 g_free(realwho); |
3198 | |
3199 id = gjab_getid(gjc); | |
2086 | 3200 xmlnode_put_attrib(x, "id", id); |
3201 | |
2956 | 3202 g_hash_table_insert(jd->gjc->queries, g_strdup(id), g_strdup("vCard")); |
3203 | |
3204 gjab_send(gjc, x); | |
2086 | 3205 |
3206 xmlnode_free(x); | |
3311 | 3207 } |
3208 | |
5572 | 3209 static void jabber_get_error_msg(GaimConnection *gc, const char *who) { |
3311 | 3210 struct jabber_data *jd = gc->proto_data; |
3211 gjconn gjc = jd->gjc; | |
3212 gchar **str_arr = (gchar **) g_new(gpointer, 3); | |
3213 gchar **ap = str_arr; | |
3214 gchar *realwho, *final; | |
3215 struct jabber_buddy_data *jbd; | |
3216 | |
3217 if((realwho = get_realwho(gjc, who, FALSE, NULL)) == NULL) { | |
3218 g_strfreev(str_arr); | |
3219 return; | |
3220 } | |
3221 | |
5135 | 3222 jbd = jabber_find_buddy(gc, realwho, TRUE); |
3311 | 3223 |
5236 | 3224 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _("Jabber ID"), realwho); |
3225 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _("Error"), jbd->error_msg); | |
3311 | 3226 *ap = NULL; |
3770 | 3227 |
3311 | 3228 final= g_strjoinv(NULL, str_arr); |
3770 | 3229 |
3311 | 3230 g_strfreev(str_arr); |
3231 | |
3232 g_show_info_text(gc, realwho, 2, final, NULL); | |
3233 g_free(realwho); | |
3234 g_free(final); | |
2086 | 3235 } |
3236 | |
5572 | 3237 static void jabber_get_away_msg(GaimConnection *gc, const char *who) { |
2956 | 3238 struct jabber_data *jd = gc->proto_data; |
3239 gjconn gjc = jd->gjc; | |
3311 | 3240 int num_resources; |
3241 gaim_jid gjid; | |
3242 char *buddy = get_realwho(gjc, who, FALSE, &gjid); | |
5135 | 3243 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, buddy, TRUE); |
3311 | 3244 gchar **str_arr; |
3245 gchar **ap; | |
3246 gchar *realwho, *final; | |
3247 GSList *resources; | |
3248 int i; | |
3249 | |
3250 if(!buddy) | |
3251 return; | |
3252 | |
3253 if(!gjid->resource) { | |
3254 num_resources = g_slist_length(jbd->resources); | |
3255 resources = jbd->resources; | |
3256 } else { | |
3257 num_resources = 1; | |
3258 resources = jbd->resources; | |
3259 while(strcasecmp(((jab_res_info)resources->data)->name, gjid->resource)) | |
3260 resources = resources->next; | |
3261 } | |
3262 | |
3263 gaim_jid_free(gjid); | |
2956 | 3264 |
3265 /* space for all elements: Jabber I.D. + "status" + NULL (list terminator) */ | |
3311 | 3266 str_arr = (gchar **) g_new(gpointer, num_resources*2 + 1); |
3267 ap = str_arr; | |
3268 | |
3269 for(i=0; i<num_resources; i++) | |
3270 { | |
3271 jab_res_info jri = resources->data; | |
4450 | 3272 char *status; |
3311 | 3273 realwho = g_strdup_printf("%s/%s", buddy, jri->name); |
4450 | 3274 status = strdup_withhtml(jabber_lookup_away(gjc, realwho)); |
5236 | 3275 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _("Jabber ID"), realwho); |
3276 *ap++ = g_strdup_printf("<B>%s:</B> %s%s%s<BR>\n", _("Status"), jabber_get_state_string(jri->state), status ? ": " : "", status ? status : ""); | |
4450 | 3277 g_free(status); |
3311 | 3278 g_free(realwho); |
3279 resources = resources->next; | |
2956 | 3280 } |
3281 | |
3282 *ap = NULL; | |
3770 | 3283 |
3311 | 3284 g_free(buddy); |
2956 | 3285 |
3286 final= g_strjoinv(NULL, str_arr); | |
3287 g_strfreev(str_arr); | |
3288 | |
3311 | 3289 g_show_info_text(gc, who, 2, final, NULL); |
2956 | 3290 g_free(final); |
3770 | 3291 |
2956 | 3292 } |
3293 | |
5572 | 3294 static void jabber_get_cb_info(GaimConnection *gc, int cid, char *who) { |
2956 | 3295 struct jabber_chat *jc = NULL; |
3296 char *realwho; | |
3297 | |
3298 /* Find out which chat */ | |
3299 if(jabber_find_chat_by_convo_id(gc, cid, &jc) != 0) | |
3300 return; | |
3301 | |
3311 | 3302 realwho = g_strdup_printf("%s@%s/%s", jc->gjid->user, jc->gjid->server, who); |
2956 | 3303 |
3304 jabber_get_info(gc, realwho); | |
3305 g_free(realwho); | |
3306 } | |
3307 | |
5572 | 3308 static void jabber_get_cb_away_msg(GaimConnection *gc, int cid, char *who) { |
2956 | 3309 struct jabber_chat *jc = NULL; |
3310 char *realwho; | |
3311 | |
3312 /* Find out which chat */ | |
3313 if(jabber_find_chat_by_convo_id(gc, cid, &jc) != 0) | |
3314 return; | |
3315 | |
3311 | 3316 realwho = g_strdup_printf("%s@%s/%s", jc->gjid->user, jc->gjid->server, who); |
2956 | 3317 |
3318 jabber_get_away_msg(gc, realwho); | |
3319 g_free(realwho); | |
3320 | |
3321 } | |
3322 | |
4744 | 3323 static char *jabber_tooltip_text(struct buddy *b) |
3324 { | |
5135 | 3325 struct jabber_buddy_data *jbd = jabber_find_buddy(b->account->gc, b->name, FALSE); |
4745 | 3326 jab_res_info jri = jabber_find_resource(b->account->gc, b->name); |
5135 | 3327 char *ret = NULL; |
4745 | 3328 if(jri) { |
4777 | 3329 char *stripped = strip_html(jabber_lookup_away(GC_GJ(b->account->gc), |
4745 | 3330 b->name)); |
4777 | 3331 char *text = NULL; |
3332 if(stripped) | |
3333 text = g_markup_escape_text(stripped, strlen(stripped)); | |
5236 | 3334 ret = g_strdup_printf("<b>%s:</b> %s%s%s", |
3335 _("Status"), | |
4745 | 3336 jabber_get_state_string(jri->state), text ? ": " : "", |
3337 text ? text : ""); | |
3338 | |
4777 | 3339 if(stripped) { |
3340 g_free(stripped); | |
4745 | 3341 g_free(text); |
4777 | 3342 } |
5136 | 3343 } else if(jbd && !GAIM_BUDDY_IS_ONLINE(b) && |
3344 (jbd->subscription & JABBER_SUB_PENDING || | |
5135 | 3345 !(jbd->subscription & JABBER_SUB_TO))) { |
5236 | 3346 ret = g_strdup_printf("<b>%s:</b> %s", _("Status"), _("Not Authorized")); |
4745 | 3347 } |
5135 | 3348 return ret; |
4744 | 3349 } |
3350 | |
4732 | 3351 static char *jabber_status_text(struct buddy *b) |
3352 { | |
5135 | 3353 struct jabber_buddy_data *jbd = jabber_find_buddy(b->account->gc, b->name, FALSE); |
3354 char *ret = NULL; | |
4732 | 3355 if (b->uc & UC_UNAVAILABLE) { |
4777 | 3356 char *stripped = strip_html(jabber_lookup_away(GC_GJ(b->account->gc), |
4745 | 3357 b->name)); |
4777 | 3358 if(!stripped) { |
4745 | 3359 jab_res_info jri = jabber_find_resource(b->account->gc, b->name); |
3360 if(jri) | |
4777 | 3361 stripped = g_strdup(jabber_get_state_string(jri->state)); |
4745 | 3362 } |
4777 | 3363 ret = g_markup_escape_text(stripped, strlen(stripped)); |
3364 g_free(stripped); | |
5136 | 3365 } else if(jbd && !GAIM_BUDDY_IS_ONLINE(b) && |
3366 (jbd->subscription & JABBER_SUB_PENDING || | |
5135 | 3367 !(jbd->subscription & JABBER_SUB_TO))) { |
3368 ret = g_strdup(_("Not Authorized")); | |
4732 | 3369 } |
5135 | 3370 return ret; |
4732 | 3371 } |
3372 | |
5572 | 3373 static GList *jabber_buddy_menu(GaimConnection *gc, const char *who) { |
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
3374 GList *m = NULL; |
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
3375 struct proto_buddy_menu *pbm; |
4687 | 3376 struct buddy *b = gaim_find_buddy(gc->account, who); |
3311 | 3377 |
3378 if(b->uc == UC_ERROR) | |
3379 { | |
3380 pbm = g_new0(struct proto_buddy_menu, 1); | |
3381 pbm->label = _("View Error Msg"); | |
3382 pbm->callback = jabber_get_error_msg; | |
3383 pbm->gc = gc; | |
3384 m = g_list_append(m, pbm); | |
3385 } else { | |
3340 | 3386 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
3387 char *realwho = get_realwho(gjc, who, FALSE, NULL); | |
5135 | 3388 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, realwho, FALSE); |
3340 | 3389 |
3390 g_free(realwho); | |
3391 | |
3311 | 3392 pbm = g_new0(struct proto_buddy_menu, 1); |
3393 pbm->label = _("Get Away Msg"); | |
3394 pbm->callback = jabber_get_away_msg; | |
3395 pbm->gc = gc; | |
3396 m = g_list_append(m, pbm); | |
3340 | 3397 |
3398 pbm = g_new0(struct proto_buddy_menu, 1); | |
3399 if(jbd && (jbd->invisible & JABBER_BUD_INVIS)) { | |
3400 pbm->label = _("Un-hide From"); | |
3401 pbm->callback = jabber_visible_to_buddy; | |
3402 } else { | |
3403 pbm->label = _("Temporarily Hide From"); | |
3404 pbm->callback = jabber_invisible_to_buddy; | |
3405 } | |
4916 | 3406 |
3407 pbm->gc = gc; | |
3408 m = g_list_append(m, pbm); | |
3409 pbm = g_new0(struct proto_buddy_menu, 1); | |
3410 pbm->label = _("Cancel Presence Notification"); | |
3411 pbm->callback = jabber_unsubscribe_buddy_from_us; | |
3340 | 3412 pbm->gc = gc; |
3413 m = g_list_append(m, pbm); | |
5136 | 3414 |
3415 if(jbd && !GAIM_BUDDY_IS_ONLINE(b) && | |
3416 !(jbd->subscription & JABBER_SUB_TO)) { | |
3417 pbm = g_new0(struct proto_buddy_menu, 1); | |
3418 pbm->label = _("Re-request authorization"); | |
3419 pbm->callback = jabber_add_buddy; | |
3420 pbm->gc = gc; | |
3421 m = g_list_append(m, pbm); | |
3422 } | |
3311 | 3423 } |
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
3424 |
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
3425 return m; |
2086 | 3426 } |
3427 | |
5572 | 3428 static GList *jabber_away_states(GaimConnection *gc) { |
2086 | 3429 GList *m = NULL; |
3430 | |
4982 | 3431 m = g_list_append(m, _("Online")); |
3432 m = g_list_append(m, _("Chatty")); | |
3433 m = g_list_append(m, _("Away")); | |
3434 m = g_list_append(m, _("Extended Away")); | |
3435 m = g_list_append(m, _("Do Not Disturb")); | |
3436 m = g_list_append(m, _("Invisible")); | |
4110 | 3437 m = g_list_append(m, GAIM_AWAY_CUSTOM); |
2086 | 3438 |
3439 return m; | |
3440 } | |
3441 | |
5572 | 3442 static void jabber_set_away(GaimConnection *gc, char *state, char *message) |
2086 | 3443 { |
3444 xmlnode x, y; | |
3445 struct jabber_data *jd = gc->proto_data; | |
2956 | 3446 gjconn gjc = jd->gjc; |
3311 | 3447 GSList *jcs; |
3448 struct jabber_chat *jc; | |
3449 char *chatname; | |
3340 | 3450 gboolean invisible = FALSE; |
2086 | 3451 |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3452 if (gc->away) { |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3453 g_free(gc->away); |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3454 gc->away = NULL; |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3455 } |
2086 | 3456 |
3457 x = xmlnode_new_tag("presence"); | |
3458 | |
3459 if (!strcmp(state, GAIM_AWAY_CUSTOM)) { | |
3460 /* oh goody. Gaim is telling us what to do. */ | |
3461 if (message) { | |
3462 /* Gaim wants us to be away */ | |
5174 | 3463 char *stripped; |
3464 | |
3465 /* Jabber supports XHTML in IMs, but not in away messages. */ | |
3466 html_to_xhtml(message, NULL, &stripped); | |
3467 | |
2086 | 3468 y = xmlnode_insert_tag(x, "show"); |
3469 xmlnode_insert_cdata(y, "away", -1); | |
3470 y = xmlnode_insert_tag(x, "status"); | |
5174 | 3471 xmlnode_insert_cdata(y, stripped, -1); |
3472 | |
3473 gc->away = g_strdup(stripped); | |
3474 g_free(stripped); | |
2086 | 3475 } else { |
3476 /* Gaim wants us to not be away */ | |
3477 /* but for Jabber, we can just send presence with no other information. */ | |
3478 } | |
3479 } else { | |
3480 /* state is one of our own strings. it won't be NULL. */ | |
4982 | 3481 if (!strcmp(state, _("Online"))) { |
2086 | 3482 /* once again, we don't have to put anything here */ |
4982 | 3483 } else if (!strcmp(state, _("Chatty"))) { |
2086 | 3484 y = xmlnode_insert_tag(x, "show"); |
3485 xmlnode_insert_cdata(y, "chat", -1); | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3486 gc->away = g_strdup(""); |
4982 | 3487 } else if (!strcmp(state, _("Away"))) { |
2086 | 3488 y = xmlnode_insert_tag(x, "show"); |
3489 xmlnode_insert_cdata(y, "away", -1); | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3490 gc->away = g_strdup(""); |
4982 | 3491 } else if (!strcmp(state, _("Extended Away"))) { |
2086 | 3492 y = xmlnode_insert_tag(x, "show"); |
3493 xmlnode_insert_cdata(y, "xa", -1); | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3494 gc->away = g_strdup(""); |
4982 | 3495 } else if (!strcmp(state, _("Do Not Disturb"))) { |
2086 | 3496 y = xmlnode_insert_tag(x, "show"); |
3497 xmlnode_insert_cdata(y, "dnd", -1); | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3498 gc->away = g_strdup(""); |
4982 | 3499 } else if (!strcmp(state, _("Invisible"))) { |
3340 | 3500 xmlnode_put_attrib(x, "type", "invisible"); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3501 gc->away = g_strdup(""); |
3340 | 3502 invisible = TRUE; |
2086 | 3503 } |
3504 } | |
3505 | |
3311 | 3506 gjab_send(gjc, x); /* Notify "individuals" */ |
3507 | |
3508 /* | |
3509 * As of jabberd-1.4.2: simply sending presence to the server doesn't result in | |
3510 * it being propagated to conference rooms. So we wade thru the list of chats, | |
3511 * sending our new presence status to each and every one. | |
3512 */ | |
3513 for(jcs = jd->chats; jcs; jcs = jcs->next) { | |
3514 jc = jcs->data; | |
3515 if(jc->state == JCS_ACTIVE) { | |
3516 xmlnode_put_attrib(x, "from", jc->gjid->full); | |
3517 chatname = g_strdup_printf("%s@%s", jc->gjid->user, jc->gjid->server); | |
3518 xmlnode_put_attrib(x, "to", chatname); | |
3519 gjab_send(gjc, x); | |
3520 g_free(chatname); | |
3521 } | |
3522 } | |
3523 | |
2086 | 3524 xmlnode_free(x); |
3340 | 3525 |
3526 invisible_to_all_buddies(gc, invisible); | |
2086 | 3527 } |
3528 | |
5572 | 3529 static void jabber_set_idle(GaimConnection *gc, int idle) { |
2086 | 3530 struct jabber_data *jd = (struct jabber_data *)gc->proto_data; |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3531 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3532 "jabber_set_idle: setting idle %i\n", idle); |
3770 | 3533 jd->idle = idle ? time(NULL) - idle : idle; |
2086 | 3534 } |
3535 | |
5572 | 3536 static void jabber_keepalive(GaimConnection *gc) { |
2086 | 3537 struct jabber_data *jd = (struct jabber_data *)gc->proto_data; |
4450 | 3538 gjab_send_raw(jd->gjc, JABBER_KEEPALIVE_STRING); |
2086 | 3539 } |
3540 | |
2956 | 3541 /*---------------------------------------*/ |
3542 /* Jabber "set info" (vCard) support */ | |
3543 /*---------------------------------------*/ | |
3544 | |
3545 /* | |
3546 * V-Card format: | |
3547 * | |
3548 * <vCard prodid='' version='' xmlns=''> | |
3549 * <FN></FN> | |
3550 * <N> | |
3551 * <FAMILY/> | |
3552 * <GIVEN/> | |
3553 * </N> | |
3554 * <NICKNAME/> | |
3555 * <URL/> | |
3556 * <ADR> | |
3557 * <STREET/> | |
3558 * <EXTADD/> | |
3559 * <LOCALITY/> | |
3560 * <REGION/> | |
3561 * <PCODE/> | |
3562 * <COUNTRY/> | |
3563 * </ADR> | |
3564 * <TEL/> | |
3565 * <EMAIL/> | |
3566 * <ORG> | |
3567 * <ORGNAME/> | |
3568 * <ORGUNIT/> | |
3569 * </ORG> | |
3570 * <TITLE/> | |
3571 * <ROLE/> | |
3572 * <DESC/> | |
3573 * <BDAY/> | |
3574 * </vCard> | |
3575 * | |
3576 * See also: | |
3577 * | |
3578 * http://docs.jabber.org/proto/html/vcard-temp.html | |
3579 * http://www.vcard-xml.org/dtd/vCard-XML-v2-20010520.dtd | |
3580 */ | |
3581 | |
3582 /* | |
3583 * Cross-reference user-friendly V-Card entry labels to vCard XML tags | |
3584 * and attributes. | |
3585 * | |
3586 * Order is (or should be) unimportant. For example: we have no way of | |
3587 * knowing in what order real data will arrive. | |
3588 * | |
3589 * Format: Label, Pre-set text, "visible" flag, "editable" flag, XML tag | |
3590 * name, XML tag's parent tag "path" (relative to vCard node). | |
3591 * | |
3592 * List is terminated by a NULL label pointer. | |
3593 * | |
3594 * Entries with no label text, but with XML tag and parent tag | |
3595 * entries, are used by V-Card XML construction routines to | |
3596 * "automagically" construct the appropriate XML node tree. | |
3597 * | |
3598 * Thoughts on future direction/expansion | |
3599 * | |
3600 * This is a "simple" vCard. | |
3601 * | |
3602 * It is possible for nodes other than the "vCard" node to have | |
3603 * attributes. Should that prove necessary/desirable, add an | |
3604 * "attributes" pointer to the vcard_template struct, create the | |
3605 * necessary tag_attr structs, and add 'em to the vcard_dflt_data | |
3606 * array. | |
3607 * | |
3608 * The above changes will (obviously) require changes to the vCard | |
3609 * construction routines. | |
3610 */ | |
3611 | |
3612 struct vcard_template { | |
3613 char *label; /* label text pointer */ | |
3614 char *text; /* entry text pointer */ | |
3615 int visible; /* should entry field be "visible?" */ | |
3616 int editable; /* should entry field be editable? */ | |
3617 char *tag; /* tag text */ | |
3618 char *ptag; /* parent tag "path" text */ | |
3619 char *url; /* vCard display format if URL */ | |
3620 } vcard_template_data[] = { | |
2975 | 3621 {N_("Full Name"), NULL, TRUE, TRUE, "FN", NULL, NULL}, |
3622 {N_("Family Name"), NULL, TRUE, TRUE, "FAMILY", "N", NULL}, | |
3623 {N_("Given Name"), NULL, TRUE, TRUE, "GIVEN", "N", NULL}, | |
3624 {N_("Nickname"), NULL, TRUE, TRUE, "NICKNAME", NULL, NULL}, | |
3625 {N_("URL"), NULL, TRUE, TRUE, "URL", NULL, "<A HREF=\"%s\">%s</A>"}, | |
3626 {N_("Street Address"), NULL, TRUE, TRUE, "STREET", "ADR", NULL}, | |
3627 {N_("Extended Address"), NULL, TRUE, TRUE, "EXTADD", "ADR", NULL}, | |
3628 {N_("Locality"), NULL, TRUE, TRUE, "LOCALITY", "ADR", NULL}, | |
3629 {N_("Region"), NULL, TRUE, TRUE, "REGION", "ADR", NULL}, | |
3630 {N_("Postal Code"), NULL, TRUE, TRUE, "PCODE", "ADR", NULL}, | |
3631 {N_("Country"), NULL, TRUE, TRUE, "COUNTRY", "ADR", NULL}, | |
3632 {N_("Telephone"), NULL, TRUE, TRUE, "TELEPHONE", NULL, NULL}, | |
3633 {N_("Email"), NULL, TRUE, TRUE, "EMAIL", NULL, "<A HREF=\"mailto:%s\">%s</A>"}, | |
3634 {N_("Organization Name"), NULL, TRUE, TRUE, "ORGNAME", "ORG", NULL}, | |
3635 {N_("Organization Unit"), NULL, TRUE, TRUE, "ORGUNIT", "ORG", NULL}, | |
3636 {N_("Title"), NULL, TRUE, TRUE, "TITLE", NULL, NULL}, | |
3637 {N_("Role"), NULL, TRUE, TRUE, "ROLE", NULL, NULL}, | |
3638 {N_("Birthday"), NULL, TRUE, TRUE, "BDAY", NULL, NULL}, | |
3639 {N_("Description"), NULL, TRUE, TRUE, "DESC", NULL, NULL}, | |
2956 | 3640 {"", NULL, TRUE, TRUE, "N", NULL, NULL}, |
3641 {"", NULL, TRUE, TRUE, "ADR", NULL, NULL}, | |
3642 {"", NULL, TRUE, TRUE, "ORG", NULL, NULL}, | |
3643 {NULL, NULL, 0, 0, NULL, NULL, NULL} | |
3644 }; | |
3645 | |
3646 /* | |
3647 * The "vCard" tag's attibute list... | |
3648 */ | |
3649 struct tag_attr { | |
3650 char *attr; | |
3651 char *value; | |
3652 } vcard_tag_attr_list[] = { | |
3653 {"prodid", "-//HandGen//NONSGML vGen v1.0//EN"}, | |
3654 {"version", "2.0", }, | |
3655 {"xmlns", "vcard-temp", }, | |
3656 {NULL, NULL}, | |
3657 }; | |
3658 | |
3659 | |
3660 /* | |
3661 * V-Card user instructions | |
3662 */ | |
3663 static char *multi_entry_instructions = | |
2975 | 3664 N_("All items below are optional. Enter only the information with which you feel comfortable"); |
3665 static char *entries_title = N_("User Identity"); | |
2956 | 3666 |
3667 /* | |
3668 * Used by routines to parse an XML-encoded string into an xmlnode tree | |
3669 */ | |
3670 typedef struct { | |
3671 XML_Parser parser; | |
3672 xmlnode current; | |
3673 } *xmlstr2xmlnode_parser, xmlstr2xmlnode_parser_struct; | |
3674 | |
3675 | |
3676 /* | |
3677 * Display a Jabber vCard | |
3678 */ | |
3679 static void jabber_handlevcard(gjconn gjc, xmlnode querynode, char *from) | |
3680 { | |
5572 | 3681 GaimConnection *gc = GJ_GC(gjc); |
2956 | 3682 char *cdata, *status; |
3683 struct vcard_template *vc_tp = vcard_template_data; | |
3684 | |
3685 /* space for all vCard elements + Jabber I.D. + "status" + NULL (list terminator) */ | |
3686 gchar **str_arr = (gchar **) g_new(gpointer, | |
3687 (sizeof(vcard_template_data)/sizeof(struct vcard_template)) + 3); | |
3688 gchar **ap = str_arr; | |
3689 gchar *buddy, *final; | |
3690 | |
4745 | 3691 jab_res_info jri; |
3692 | |
3311 | 3693 if((buddy = get_realwho(gjc, from, TRUE, NULL)) == NULL) { |
3694 g_strfreev(str_arr); | |
3695 return; | |
2956 | 3696 } |
3311 | 3697 |
4745 | 3698 jri = jabber_find_resource(GJ_GC(gjc), buddy); |
3699 | |
5236 | 3700 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _("Jabber ID"), buddy); |
2956 | 3701 |
3702 for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
3703 if(strcmp(vc_tp->tag, "DESC") == 0) | |
3704 continue; /* special handling later */ | |
3705 if(vc_tp->ptag == NULL) { | |
3706 cdata = xmlnode_get_tag_data(querynode, vc_tp->tag); | |
3707 } else { | |
3708 gchar *tag = g_strdup_printf("%s/%s", vc_tp->ptag, vc_tp->tag); | |
3709 cdata = xmlnode_get_tag_data(querynode, tag); | |
3710 g_free(tag); | |
3711 } | |
3712 if(cdata != NULL) { | |
3713 if(vc_tp->url == NULL) { | |
5236 | 3714 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _(vc_tp->label), cdata); |
2956 | 3715 } else { |
3716 gchar *fmt = g_strdup_printf("<B>%%s:</B> %s<BR>\n", vc_tp->url); | |
5236 | 3717 *ap++ = g_strdup_printf(fmt, _(vc_tp->label), cdata, cdata); |
2956 | 3718 g_free(fmt); |
3719 } | |
3720 } | |
3721 } | |
3722 | |
4745 | 3723 |
4450 | 3724 status = strdup_withhtml(jabber_lookup_away(gjc, buddy)); |
5236 | 3725 *ap++ = g_strdup_printf("<B>%s:</B> %s%s%s<BR>\n", |
3726 _("Status"), | |
4745 | 3727 jri ? jabber_get_state_string(jri->state) : "", |
3728 jri && status ? ": " : "", status ? status : ""); | |
4450 | 3729 g_free(status); |
2956 | 3730 |
3731 /* | |
3732 * "Description" handled as a special case: get a copy of the | |
3733 * string and HTML-ize. | |
3734 */ | |
3735 if((cdata = xmlnode_get_tag_data(querynode, "DESC")) != NULL) { | |
3736 gchar *tmp = g_strdup_printf("<HR>%s<BR>", cdata); | |
3737 *ap++ = strdup_withhtml(tmp); | |
3738 g_free(tmp); | |
3739 } | |
3740 | |
3741 *ap = NULL; | |
3742 | |
3743 final= g_strjoinv(NULL, str_arr); | |
3744 g_strfreev(str_arr); | |
3745 | |
3746 g_show_info_text(gc, buddy, 2, final, NULL); | |
3747 g_free(buddy); | |
3748 g_free(final); | |
3749 } | |
3750 | |
3751 /* | |
3752 * Used by XML_Parse on parsing CDATA | |
3753 */ | |
3754 static void xmlstr2xmlnode_charData(void *userdata, const char *s, int slen) | |
3755 { | |
3756 xmlstr2xmlnode_parser xmlp = (xmlstr2xmlnode_parser) userdata; | |
3757 | |
3758 if (xmlp->current) | |
3759 xmlnode_insert_cdata(xmlp->current, s, slen); | |
3760 } | |
3761 | |
3762 /* | |
3763 * Used by XML_Parse to start or append to an xmlnode | |
3764 */ | |
3765 static void xmlstr2xmlnode_startElement(void *userdata, const char *name, const char **attribs) | |
3766 { | |
3767 xmlnode x; | |
3768 xmlstr2xmlnode_parser xmlp = (xmlstr2xmlnode_parser) userdata; | |
3769 | |
3770 if (xmlp->current) { | |
3771 /* Append the node to the current one */ | |
3772 x = xmlnode_insert_tag(xmlp->current, name); | |
3773 xmlnode_put_expat_attribs(x, attribs); | |
3774 | |
3775 xmlp->current = x; | |
3776 } else { | |
3777 x = xmlnode_new_tag(name); | |
3778 xmlnode_put_expat_attribs(x, attribs); | |
3779 xmlp->current = x; | |
3780 } | |
3781 } | |
3782 | |
3783 /* | |
3784 * Used by XML_Parse to end an xmlnode | |
3785 */ | |
3786 static void xmlstr2xmlnode_endElement(void *userdata, const char *name) | |
3787 { | |
3788 xmlstr2xmlnode_parser xmlp = (xmlstr2xmlnode_parser) userdata; | |
3789 xmlnode x; | |
3790 | |
3791 if (xmlp->current != NULL && (x = xmlnode_get_parent(xmlp->current)) != NULL) { | |
3792 xmlp->current = x; | |
3793 } | |
3794 } | |
3795 | |
3796 /* | |
3797 * Parse an XML-encoded string into an xmlnode tree | |
3798 * | |
3799 * Caller is responsible for freeing the returned xmlnode | |
3800 */ | |
3801 static xmlnode xmlstr2xmlnode(char *xmlstring) | |
3802 { | |
3803 xmlstr2xmlnode_parser my_parser = g_new(xmlstr2xmlnode_parser_struct, 1); | |
3804 xmlnode x = NULL; | |
3805 | |
3806 my_parser->parser = XML_ParserCreate(NULL); | |
3807 my_parser->current = NULL; | |
3808 | |
3809 XML_SetUserData(my_parser->parser, (void *)my_parser); | |
3810 XML_SetElementHandler(my_parser->parser, xmlstr2xmlnode_startElement, xmlstr2xmlnode_endElement); | |
3811 XML_SetCharacterDataHandler(my_parser->parser, xmlstr2xmlnode_charData); | |
3812 XML_Parse(my_parser->parser, xmlstring, strlen(xmlstring), 0); | |
3813 | |
3814 x = my_parser->current; | |
3815 | |
3816 XML_ParserFree(my_parser->parser); | |
3817 g_free(my_parser); | |
3818 | |
3819 return(x); | |
3820 } | |
3821 | |
3822 /* | |
3823 * Insert a tag node into an xmlnode tree, recursively inserting parent tag | |
3824 * nodes as necessary | |
3825 * | |
3826 * Returns pointer to inserted node | |
3827 * | |
3828 * Note to hackers: this code is designed to be re-entrant (it's recursive--it | |
3829 * calls itself), so don't put any "static"s in here! | |
3830 */ | |
3831 static xmlnode insert_tag_to_parent_tag(xmlnode start, const char *parent_tag, const char *new_tag) | |
3832 { | |
3833 xmlnode x = NULL; | |
3834 | |
3835 /* | |
3836 * If the parent tag wasn't specified, see if we can get it | |
3837 * from the vCard template struct. | |
3838 */ | |
3839 if(parent_tag == NULL) { | |
3840 struct vcard_template *vc_tp = vcard_template_data; | |
3841 | |
3842 while(vc_tp->label != NULL) { | |
3843 if(strcmp(vc_tp->tag, new_tag) == 0) { | |
3844 parent_tag = vc_tp->ptag; | |
3845 break; | |
3846 } | |
3847 ++vc_tp; | |
3848 } | |
3849 } | |
3850 | |
3851 /* | |
3852 * If we have a parent tag... | |
3853 */ | |
3854 if(parent_tag != NULL ) { | |
3855 /* | |
3856 * Try to get the parent node for a tag | |
3857 */ | |
3858 if((x = xmlnode_get_tag(start, parent_tag)) == NULL) { | |
3859 /* | |
3860 * Descend? | |
3861 */ | |
3862 char *grand_parent = strcpy(g_malloc(strlen(parent_tag) + 1), parent_tag); | |
3863 char *parent; | |
3864 | |
3865 if((parent = strrchr(grand_parent, '/')) != NULL) { | |
3866 *(parent++) = '\0'; | |
3867 x = insert_tag_to_parent_tag(start, grand_parent, parent); | |
3868 } else { | |
3869 x = xmlnode_insert_tag(start, grand_parent); | |
3870 } | |
3871 g_free(grand_parent); | |
3872 } else { | |
3873 /* | |
3874 * We found *something* to be the parent node. | |
3875 * Note: may be the "root" node! | |
3876 */ | |
3877 xmlnode y; | |
3878 if((y = xmlnode_get_tag(x, new_tag)) != NULL) { | |
3879 return(y); | |
3880 } | |
3881 } | |
3882 } | |
3883 | |
3884 /* | |
3885 * insert the new tag into its parent node | |
3886 */ | |
3887 return(xmlnode_insert_tag((x == NULL? start : x), new_tag)); | |
3888 } | |
3889 | |
3890 /* | |
3891 * Find the tag name for a label | |
3892 * | |
3893 * Returns NULL on not found | |
3894 */ | |
3895 static char *tag_for_label(const char *label) | |
3896 { | |
3897 struct vcard_template *vc_tp = vcard_template_data; | |
3898 char *p = NULL; | |
3899 | |
3900 for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
3901 if(strcmp(label, vc_tp->label) == 0) { | |
3902 p = vc_tp->tag; | |
3903 break; | |
3904 } | |
3905 } | |
3906 | |
3907 return(p); | |
3908 } | |
3909 | |
3910 /* | |
3911 * Send vCard info to Jabber server | |
3912 */ | |
5954 | 3913 static void jabber_set_info(GaimConnection *gc, const char *info) |
2956 | 3914 { |
3915 xmlnode x, vc_node; | |
3916 char *id; | |
3917 struct jabber_data *jd = gc->proto_data; | |
3918 gjconn gjc = jd->gjc; | |
5954 | 3919 gchar *info2; |
2956 | 3920 |
3921 x = xmlnode_new_tag("iq"); | |
3311 | 3922 xmlnode_put_attrib(x, "type", "set"); |
2956 | 3923 |
3924 id = gjab_getid(gjc); | |
3770 | 3925 |
2956 | 3926 xmlnode_put_attrib(x, "id", id); |
3927 | |
3928 /* | |
3929 * Send only if there's actually any *information* to send | |
3930 */ | |
5954 | 3931 info2 = g_strdup(info); |
3932 vc_node = xmlstr2xmlnode(info2); | |
4874 | 3933 |
3934 if(vc_node) { | |
3935 if (xmlnode_get_name(vc_node) && | |
3936 !g_ascii_strncasecmp(xmlnode_get_name(vc_node), "vcard", 5)) { | |
3937 xmlnode_insert_tag_node(x, vc_node); | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3938 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3939 "jabber: vCard packet: %s\n", xmlnode2str(x)); |
4874 | 3940 gjab_send(gjc, x); |
3941 } | |
3942 xmlnode_free(vc_node); | |
2956 | 3943 } |
3944 | |
3945 xmlnode_free(x); | |
5954 | 3946 g_free(info2); |
2956 | 3947 } |
3948 | |
3949 /* | |
3950 * This is the callback from the "ok clicked" for "set vCard" | |
3951 * | |
3952 * Formats GSList data into XML-encoded string and returns a pointer | |
3953 * to said string. | |
3954 * | |
3955 * g_free()'ing the returned string space is the responsibility of | |
3956 * the caller. | |
3957 */ | |
3958 static gchar *jabber_format_info(MultiEntryDlg *b) | |
3959 { | |
3960 xmlnode vc_node; | |
3961 GSList *list; | |
3962 MultiEntryData *med; | |
3963 MultiTextData *mtd; | |
3964 char *p; | |
3965 | |
3966 struct tag_attr *tag_attr; | |
3967 | |
3968 vc_node = xmlnode_new_tag("vCard"); | |
3969 | |
3970 for(tag_attr = vcard_tag_attr_list; tag_attr->attr != NULL; ++tag_attr) | |
3971 xmlnode_put_attrib(vc_node, tag_attr->attr, tag_attr->value); | |
3972 | |
3973 for(list = b->multi_entry_items; list != NULL; list = list->next) { | |
3974 med = (MultiEntryData *) list->data; | |
3975 if(med->label != NULL && med->text != NULL && (med->text)[0] != '\0') { | |
3976 if((p = tag_for_label(med->label)) != NULL) { | |
3977 xmlnode xp; | |
3978 if((xp = insert_tag_to_parent_tag(vc_node, NULL, p)) != NULL) { | |
3979 xmlnode_insert_cdata(xp, med->text, -1); | |
3980 } | |
3981 } | |
3982 } | |
3983 } | |
3984 | |
3985 for(list = b->multi_text_items; list != NULL; list = list->next) { | |
3986 mtd = (MultiTextData *) list->data; | |
3987 if(mtd->label != NULL && mtd->text != NULL && (mtd->text)[0] != '\0') { | |
3988 if((p = tag_for_label(mtd->label)) != NULL) { | |
3989 xmlnode xp; | |
3990 if((xp = insert_tag_to_parent_tag(vc_node, NULL, p)) != NULL) { | |
3991 xmlnode_insert_cdata(xp, mtd->text, -1); | |
3992 } | |
3993 } | |
3994 } | |
3995 } | |
3996 | |
3997 | |
3998 p = g_strdup(xmlnode2str(vc_node)); | |
3999 xmlnode_free(vc_node); | |
4000 | |
4001 return(p); | |
4002 } | |
4003 | |
4004 /* | |
4005 * This gets executed by the proto action | |
4006 * | |
4007 * Creates a new MultiEntryDlg struct, gets the XML-formatted user_info | |
4008 * string (if any) into GSLists for the (multi-entry) edit dialog and | |
4009 * calls the set_vcard dialog. | |
4010 */ | |
5572 | 4011 static void jabber_setup_set_info(GaimConnection *gc) |
2956 | 4012 { |
4013 MultiEntryData *data; | |
4014 const struct vcard_template *vc_tp; | |
4015 char *user_info; | |
4016 MultiEntryDlg *b = multi_entry_dialog_new(); | |
4017 char *cdata; | |
4018 xmlnode x_vc_data = NULL; | |
5572 | 4019 GaimAccount *tmp = gc->account; |
4491 | 4020 b->account = tmp; |
2956 | 4021 |
4022 | |
4023 /* | |
4024 * Get existing, XML-formatted, user info | |
4025 */ | |
4026 if((user_info = g_malloc(strlen(tmp->user_info) + 1)) != NULL) { | |
4027 strcpy(user_info, tmp->user_info); | |
4028 x_vc_data = xmlstr2xmlnode(user_info); | |
4029 } | |
4030 | |
4031 /* | |
4032 * Set up GSLists for edit with labels from "template," data from user info | |
4033 */ | |
4034 for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
4035 if((vc_tp->label)[0] == '\0') | |
4036 continue; | |
4037 if(vc_tp->ptag == NULL) { | |
4038 cdata = xmlnode_get_tag_data(x_vc_data, vc_tp->tag); | |
4039 } else { | |
4040 gchar *tag = g_strdup_printf("%s/%s", vc_tp->ptag, vc_tp->tag); | |
4041 cdata = xmlnode_get_tag_data(x_vc_data, tag); | |
4042 g_free(tag); | |
4043 } | |
4044 if(strcmp(vc_tp->tag, "DESC") == 0) { | |
4045 multi_text_list_update(&(b->multi_text_items), | |
4046 vc_tp->label, cdata, TRUE); | |
4047 } else { | |
4048 data = multi_entry_list_update(&(b->multi_entry_items), | |
4049 vc_tp->label, cdata, TRUE); | |
4050 data->visible = vc_tp->visible; | |
4051 data->editable = vc_tp->editable; | |
4052 } | |
4053 } | |
4054 | |
4055 | |
4056 if(x_vc_data != NULL) { | |
4057 xmlnode_free(x_vc_data); | |
4058 } else { | |
4059 /* | |
4060 * Early Beta versions had a different user_info storage format--let's | |
4061 * see if that works. | |
4062 * | |
4063 * This goes away RSN. | |
4064 */ | |
4065 const char *record_separator = "<BR>"; | |
4066 const char *field_separator = ": "; | |
4067 gchar **str_list, **str_list_ptr, **str_list2; | |
4068 | |
4069 if((str_list = g_strsplit(user_info, record_separator, 0)) != NULL) { | |
4070 for(str_list_ptr = str_list; *str_list_ptr != NULL; ++str_list_ptr) { | |
4071 str_list2 = g_strsplit(*str_list_ptr, field_separator, 2); | |
4072 if(str_list2[0] != NULL && str_list2[1] != NULL) { | |
4073 g_strstrip(str_list2[0]); | |
4074 g_strstrip(str_list2[1]); | |
4075 /* this is ugly--so far */ | |
4076 if(strcmp(str_list2[0], "Description") == 0) { | |
4077 multi_text_list_update(&(b->multi_text_items), | |
4078 str_list2[0], str_list2[1], FALSE); | |
4079 } else { | |
4080 multi_entry_list_update(&(b->multi_entry_items), | |
4081 str_list2[0], str_list2[1], FALSE); | |
4082 } | |
4083 } | |
4084 g_strfreev(str_list2); | |
4085 } | |
4086 g_strfreev(str_list); | |
4087 } | |
4088 } | |
4089 | |
4090 if(user_info != NULL) { | |
4091 g_free(user_info); | |
4092 } | |
4093 | |
2975 | 4094 b->title = _("Gaim - Edit Jabber vCard"); |
4074 | 4095 b->role = "set_info"; |
5236 | 4096 b->instructions->text = g_strdup(_(multi_entry_instructions)); |
4097 b->entries_title = g_strdup(_(entries_title)); | |
2956 | 4098 |
4099 b->custom = (void *) jabber_format_info; | |
4100 | |
4101 show_set_vcard(b); | |
4102 } | |
4103 | |
4104 /*---------------------------------------*/ | |
4105 /* End Jabber "set info" (vCard) support */ | |
4106 /*---------------------------------------*/ | |
4107 | |
4108 /*----------------------------------------*/ | |
4109 /* Jabber "user registration" support */ | |
4110 /*----------------------------------------*/ | |
4111 | |
4112 /* | |
4113 * Three of the following four functions duplicate much of what | |
4114 * exists elsewhere: | |
4115 * | |
4116 * jabber_handleregresp() | |
4117 * gjab_reqreg() | |
4118 * jabber_handle_registration_state() | |
4119 * | |
4120 * It may be that an additional flag could be added to one of | |
4121 * the "local" structs and the duplicated code modified to | |
4122 * account for it--thus eliminating the duplication. Then again: | |
4123 * doing it the way it is may be much cleaner. | |
4124 * | |
4125 * TBD: Code to support requesting additional information server | |
4126 * wants at registration--incl. dialog. | |
4127 */ | |
4128 | |
4129 /* | |
4130 * Like jabber_handlepacket(), only different | |
4131 */ | |
4132 static void jabber_handleregresp(gjconn gjc, jpacket p) | |
4133 { | |
4134 if (jpacket_subtype(p) == JPACKET__RESULT) { | |
4135 xmlnode querynode; | |
4136 | |
4137 if((querynode = xmlnode_get_tag(p->x, "query")) != NULL) { | |
4138 char *xmlns; | |
4139 | |
4140 /* we damn well *better* have this! */ | |
4141 if((xmlns = xmlnode_get_attrib(querynode, "xmlns")) != NULL && | |
4142 strcmp(xmlns, NS_REGISTER) == 0) { | |
4143 | |
4144 char *tag; | |
4145 xmlnode child = xmlnode_get_firstchild(querynode); | |
4146 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4147 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4148 "got registration requirments response!\n"); |
2956 | 4149 |
4150 while(child != NULL) { | |
4151 if((tag = xmlnode_get_name(child)) != NULL) { | |
4152 char *data; | |
4153 | |
4154 fprintf(stderr, "DBG: got node: \"%s\"\n", tag); | |
4155 fflush(stderr); | |
4156 | |
4157 if((data = xmlnode_get_data(child)) != NULL) { | |
4158 fprintf(stderr, "DBG: got data: \"%s\"\n", data); | |
4159 fflush(stderr); | |
4160 } | |
4161 } | |
4162 child = xmlnode_get_nextsibling(child); | |
4163 } | |
4164 } | |
4165 } else { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4166 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4167 "registration successful!\n"); |
2956 | 4168 |
5572 | 4169 gaim_connection_notice(GJ_GC(gjc), _("Server Registration successful!")); |
5578
847ad796326d
[gaim-migrate @ 5982]
Christian Hammond <chipx86@chipx86.com>
parents:
5572
diff
changeset
|
4170 gaim_connection_destroy(GJ_GC(gjc)); |
2956 | 4171 } |
4172 | |
4173 } else { | |
4174 xmlnode xerr; | |
4175 char *errmsg = NULL; | |
4176 int errcode = 0; | |
4177 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4178 gaim_debug(GAIM_DEBUG_ERROR, "jabber", "registration failed\n"); |
2956 | 4179 xerr = xmlnode_get_tag(p->x, "error"); |
4180 if (xerr) { | |
4181 char msg[BUF_LONG]; | |
4182 errmsg = xmlnode_get_data(xerr); | |
4183 if (xmlnode_get_attrib(xerr, "code")) { | |
4184 errcode = atoi(xmlnode_get_attrib(xerr, "code")); | |
4185 g_snprintf(msg, sizeof(msg), "Error %d: %s", errcode, errmsg); | |
4186 } else | |
4187 g_snprintf(msg, sizeof(msg), "%s", errmsg); | |
5572 | 4188 gaim_connection_error(GJ_GC(gjc), msg); |
2956 | 4189 } else { |
5572 | 4190 gaim_connection_error(GJ_GC(gjc), _("Unknown registration error")); |
2956 | 4191 } |
4192 } | |
4193 } | |
4194 | |
4195 /* | |
4196 * Like gjab_reqauth(), only different | |
4197 */ | |
4198 static void gjab_reqreg(gjconn gjc) | |
4199 { | |
4200 xmlnode x, y, z; | |
4201 char *user; | |
4202 | |
4203 if (!gjc) | |
4204 return; | |
4205 | |
4206 x = jutil_iqnew(JPACKET__SET, NS_REGISTER); | |
4207 y = xmlnode_get_tag(x, "query"); | |
4208 | |
4209 user = gjc->user->user; | |
4210 | |
4211 if (user) { | |
4212 z = xmlnode_insert_tag(y, "username"); | |
4213 xmlnode_insert_cdata(z, user, -1); | |
4214 } | |
4215 z = xmlnode_insert_tag(y, "password"); | |
4216 xmlnode_insert_cdata(z, gjc->pass, -1); | |
4217 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4218 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4219 "jabber: registration packet: %s\n", xmlnode2str(x)); |
2956 | 4220 gjab_send(gjc, x); |
4221 xmlnode_free(x); | |
4222 } | |
4223 | |
4224 /* | |
4225 * Like jabber_handlestate(), only different | |
4226 */ | |
4227 static void jabber_handle_registration_state(gjconn gjc, int state) | |
4228 { | |
4229 switch (state) { | |
4230 case JCONN_STATE_OFF: | |
3074 | 4231 if(gjc->was_connected) { |
5572 | 4232 gaim_connection_error(GJ_GC(gjc), _("Connection lost")); |
3074 | 4233 } else { |
5572 | 4234 gaim_connection_error(GJ_GC(gjc), _("Unable to connect")); |
3074 | 4235 } |
2956 | 4236 break; |
4237 case JCONN_STATE_CONNECTED: | |
3074 | 4238 gjc->was_connected = 1; |
2956 | 4239 /* |
4240 * TBD? | |
2975 | 4241 set_login_progress(GJ_GC(gjc), 2, _("Connected")); |
2956 | 4242 */ |
4243 break; | |
4244 case JCONN_STATE_ON: | |
4245 /* | |
4246 * TBD? | |
2975 | 4247 set_login_progress(GJ_GC(gjc), 3, _("Requesting Authentication Method")); |
2956 | 4248 */ |
4249 gjab_reqreg(gjc); | |
4250 /* | |
4251 * TBD: A work-in-progress | |
4252 gjab_reqregreqs(gjc); | |
4253 */ | |
4254 break; | |
4255 default: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4256 gaim_debug(GAIM_DEBUG_MISC, "jabber", "state change: %d\n", state); |
2956 | 4257 } |
4258 return; | |
4259 } | |
4260 | |
4261 /* | |
4262 * Like jabber_login(), only different | |
4263 */ | |
5572 | 4264 void jabber_register_user(GaimAccount *account) |
2956 | 4265 { |
6003 | 4266 GaimConnection *gc = gaim_connection_new(account); |
2956 | 4267 struct jabber_data *jd = gc->proto_data = g_new0(struct jabber_data, 1); |
4917 | 4268 char *loginname = create_valid_jid(account->username, DEFAULT_SERVER, "Gaim"); |
2956 | 4269 |
4270 /* | |
4271 * These do nothing during registration | |
4272 */ | |
3311 | 4273 jd->buddies = NULL; |
2956 | 4274 jd->chats = NULL; |
4275 | |
4491 | 4276 if ((jd->gjc = gjab_new(loginname, account->password, gc)) == NULL) { |
2956 | 4277 g_free(loginname); |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4278 gaim_debug(GAIM_DEBUG_ERROR, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4279 "unable to connect (jab_new failed)\n"); |
5572 | 4280 gaim_connection_error(gc, _("Unable to connect")); |
2956 | 4281 } else { |
4282 gjab_state_handler(jd->gjc, jabber_handle_registration_state); | |
4283 gjab_packet_handler(jd->gjc, jabber_handleregresp); | |
4284 jd->gjc->queries = NULL; | |
4285 gjab_start(jd->gjc); | |
4286 } | |
4287 | |
4288 g_free(loginname); | |
4289 } | |
4290 | |
4291 /*----------------------------------------*/ | |
4292 /* End Jabber "user registration" support */ | |
4293 /*----------------------------------------*/ | |
4294 | |
5572 | 4295 static GList *jabber_actions(GaimConnection *gc) |
2956 | 4296 { |
4297 GList *m = NULL; | |
4333 | 4298 struct proto_actions_menu *pam; |
4299 | |
4300 pam = g_new0(struct proto_actions_menu, 1); | |
4301 pam->label = _("Set User Info"); | |
4302 pam->callback = jabber_setup_set_info; | |
4303 pam->gc = gc; | |
4304 m = g_list_append(m, pam); | |
4305 | |
2956 | 4306 /* |
4333 | 4307 pam = g_new0(struct proto_actions_menu, 1); |
4308 pam->label = _("Set Dir Info"); | |
4309 pam->callback = show_set_dir; | |
4310 pam->gc = gc; | |
4311 m = g_list_append(m, pam); | |
3257 | 4312 */ |
4333 | 4313 |
4314 pam = g_new0(struct proto_actions_menu, 1); | |
4315 pam->label = _("Change Password"); | |
4316 pam->callback = show_change_passwd; | |
4317 pam->gc = gc; | |
4318 m = g_list_append(m, pam); | |
2956 | 4319 |
4320 return m; | |
4321 } | |
4322 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4323 static GaimPluginProtocolInfo prpl_info = |
2086 | 4324 { |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4325 GAIM_PROTO_JABBER, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4326 OPT_PROTO_UNIQUE_CHATNAME | OPT_PROTO_CHAT_TOPIC, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4327 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4328 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4329 jabber_list_icon, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4330 jabber_list_emblems, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4331 jabber_status_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4332 jabber_tooltip_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4333 jabber_away_states, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4334 jabber_actions, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4335 jabber_buddy_menu, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4336 jabber_chat_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4337 jabber_login, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4338 jabber_close, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4339 jabber_send_im, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4340 jabber_set_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4341 jabber_send_typing, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4342 jabber_get_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4343 jabber_set_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4344 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4345 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4346 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4347 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4348 jabber_set_idle, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4349 jabber_change_passwd, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4350 jabber_add_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4351 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4352 jabber_remove_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4353 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4354 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4355 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4356 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4357 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4358 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4359 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4360 jabber_join_chat, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4361 jabber_chat_invite, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4362 jabber_chat_leave, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4363 jabber_chat_whisper, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4364 jabber_chat_send, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4365 jabber_keepalive, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4366 jabber_register_user, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4367 jabber_get_cb_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4368 jabber_get_cb_away_msg, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4369 jabber_alias_buddy, |
5957 | 4370 jabber_group_change, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4371 jabber_rename_group, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4372 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4373 jabber_convo_closed, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4374 jabber_normalize |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4375 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4376 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4377 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4378 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4379 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4380 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4381 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4382 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4383 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4384 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4385 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4386 "prpl-jabber", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4387 "Jabber", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4388 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4389 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4390 N_("Jabber Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4391 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4392 N_("Jabber Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4393 NULL, /**< author */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4394 WEBSITE, /**< homepage */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4395 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4396 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4397 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4398 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4399 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4400 NULL, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4401 &prpl_info /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4402 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4403 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4404 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
4405 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4406 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4407 GaimAccountUserSplit *split; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4408 GaimAccountOption *option; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4409 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4410 /* Splits */ |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4411 split = gaim_account_user_split_new(_("Server"), "jabber.org", '@'); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4412 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4413 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4414 split = gaim_account_user_split_new(_("Resource"), "Gaim", '/'); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4415 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4416 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4417 /* Account Options */ |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4418 option = gaim_account_option_int_new(_("Port"), "port", DEFAULT_PORT); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4419 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4420 option); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4421 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
4422 option = gaim_account_option_string_new(_("Connect server"), |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4423 "connect_server", NULL); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4424 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4425 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4426 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4427 my_protocol = plugin; |
2086 | 4428 } |
4429 | |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
4430 GAIM_INIT_PLUGIN(jabber, init_plugin, info); |