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