Mercurial > pidgin
annotate src/protocols/jabber/jabber.c @ 5957:c5c3ddac1c89
[gaim-migrate @ 6401]
re-enable jabber buddy moving
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Wed, 25 Jun 2003 16:53:53 +0000 |
parents | fccc33d4b8fa |
children | b4a3628b7af2 |
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 { |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
2213 char *id; |
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"); | |
2234 if (NSCHECK(querynode, "jabber:iq:roster")) { | |
2235 jabber_handlebuddy(gjc, xmlnode_get_firstchild(querynode)); | |
3630 | 2236 } else if(NSCHECK(querynode, "jabber:iq:oob")) { |
2237 jabber_handleoob(gjc, p->x); | |
2956 | 2238 } |
2086 | 2239 } else if (jpacket_subtype(p) == JPACKET__GET) { |
3770 | 2240 xmlnode querynode; |
2086 | 2241 querynode = xmlnode_get_tag(p->x, "query"); |
3770 | 2242 if (NSCHECK(querynode, NS_VERSION)) { |
2243 jabber_handleversion(gjc, p->x); | |
2086 | 2244 } else if (NSCHECK(querynode, NS_TIME)) { |
3770 | 2245 jabber_handletime(gjc, p->x); |
2086 | 2246 } else if (NSCHECK(querynode, "jabber:iq:last")) { |
3770 | 2247 jabber_handlelast(gjc, p->x); |
2086 | 2248 } |
2249 } else if (jpacket_subtype(p) == JPACKET__RESULT) { | |
2250 xmlnode querynode, vcard; | |
2251 char *xmlns, *from; | |
2252 | |
2956 | 2253 /* |
2254 * TBD: ISTM maybe this part could use a serious re-work? | |
2255 */ | |
2086 | 2256 from = xmlnode_get_attrib(p->x, "from"); |
2257 querynode = xmlnode_get_tag(p->x, "query"); | |
2258 vcard = xmlnode_get_tag(p->x, "vCard"); | |
2316
ebb5ecb2cd5b
[gaim-migrate @ 2326]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
2259 if (!vcard) |
ebb5ecb2cd5b
[gaim-migrate @ 2326]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
2260 vcard = xmlnode_get_tag(p->x, "VCARD"); |
2086 | 2261 |
2262 if (NSCHECK(querynode, NS_ROSTER)) { | |
2956 | 2263 jabber_handleroster(gjc, querynode); |
2086 | 2264 } else if (NSCHECK(querynode, NS_VCARD)) { |
2956 | 2265 jabber_track_queries(gjc->queries, id, TRUE); /* delete query track */ |
3770 | 2266 jabber_handlevcard(gjc, querynode, from); |
2316
ebb5ecb2cd5b
[gaim-migrate @ 2326]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
2267 } else if (vcard) { |
2956 | 2268 jabber_track_queries(gjc->queries, id, TRUE); /* delete query track */ |
2269 jabber_handlevcard(gjc, vcard, from); | |
2270 } else if((xmlns = xmlnode_get_attrib(querynode, "xmlns")) != NULL) { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2271 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2272 "jabber:iq:query: %s\n", xmlns); |
2086 | 2273 } else { |
2956 | 2274 char *val; |
2275 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2276 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2277 "jabber:iq: %s\n", xmlnode2str(p->x)); |
2956 | 2278 |
2279 /* handle "null" query results */ | |
2280 if((val = jabber_track_queries(gjc->queries, id, TRUE)) != NULL) { | |
2281 if(strcmp((char *) val, "vCard") == 0) { | |
2282 /* | |
2283 * No actual vCard, but there's other stuff. This | |
2284 * way the user always gets some kind of response. | |
2285 */ | |
2286 jabber_handlevcard(gjc, NULL, from); | |
3257 | 2287 } else if(!strcmp((char *) val, "change_password")) { |
2288 char buf[BUF_LONG]; | |
3311 | 2289 sprintf(buf, _("Password successfully changed.")); |
3257 | 2290 |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2291 gaim_notify_info(GJ_GC(gjc), NULL, buf, NULL); |
2956 | 2292 } |
2293 } | |
2086 | 2294 } |
2295 | |
2296 } else if (jpacket_subtype(p) == JPACKET__ERROR) { | |
2297 xmlnode xerr; | |
2298 char *from, *errmsg = NULL; | |
2299 int errcode = 0; | |
2300 | |
2301 from = xmlnode_get_attrib(p->x, "from"); | |
2302 xerr = xmlnode_get_tag(p->x, "error"); | |
2303 if (xerr) { | |
2304 errmsg = xmlnode_get_data(xerr); | |
2305 if (xmlnode_get_attrib(xerr, "code")) | |
2306 errcode = atoi(xmlnode_get_attrib(xerr, "code")); | |
2307 } | |
2308 | |
3427 | 2309 from = g_strdup_printf("Jabber Error %d (%s)", errcode, from); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2310 gaim_notify_error(GJ_GC(gjc), NULL, from, errmsg); |
2086 | 2311 g_free(from); |
2312 | |
2313 } | |
2314 | |
2315 break; | |
2316 case JPACKET_S10N: | |
2956 | 2317 jabber_handles10n(gjc, p); |
2086 | 2318 break; |
2319 default: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2320 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2321 "jabber: packet type %d (%s)\n", p->type, xmlnode2str(p->x)); |
2086 | 2322 } |
2323 | |
2324 xmlnode_free(p->x); | |
2325 | |
2326 return; | |
2327 } | |
2328 | |
2956 | 2329 static void jabber_handlestate(gjconn gjc, int state) |
2086 | 2330 { |
2331 switch (state) { | |
2332 case JCONN_STATE_OFF: | |
3074 | 2333 if(gjc->was_connected) { |
5572 | 2334 gaim_connection_error(GJ_GC(gjc), _("Connection lost")); |
3074 | 2335 } else { |
5572 | 2336 gaim_connection_error(GJ_GC(gjc), _("Unable to connect")); |
3074 | 2337 } |
2086 | 2338 break; |
2339 case JCONN_STATE_CONNECTED: | |
3074 | 2340 gjc->was_connected = 1; |
5572 | 2341 gaim_connection_update_progress(GJ_GC(gjc), _("Connected"), 2, JABBER_CONNECT_STEPS); |
2086 | 2342 break; |
2343 case JCONN_STATE_ON: | |
5572 | 2344 gaim_connection_update_progress(GJ_GC(gjc), _("Requesting Authentication Method"), 3, JABBER_CONNECT_STEPS); |
2956 | 2345 gjab_reqauth(gjc); |
2086 | 2346 break; |
2347 default: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2348 gaim_debug(GAIM_DEBUG_MISC, "jabber", "state change: %d\n", state); |
2086 | 2349 } |
2350 return; | |
2351 } | |
2352 | |
5572 | 2353 static void jabber_login(GaimAccount *account) |
2086 | 2354 { |
5572 | 2355 GaimConnection *gc = gaim_account_get_connection(account); |
2086 | 2356 struct jabber_data *jd = gc->proto_data = g_new0(struct jabber_data, 1); |
4917 | 2357 char *loginname = create_valid_jid(account->username, DEFAULT_SERVER, "Gaim"); |
2086 | 2358 |
5174 | 2359 gc->flags |= OPT_CONN_HTML; |
2360 | |
3311 | 2361 jd->buddies = g_hash_table_new(g_str_hash, g_str_equal); |
2956 | 2362 jd->chats = NULL; /* we have no chats yet */ |
2086 | 2363 |
5572 | 2364 gaim_connection_update_progress(gc, _("Connecting"), 1, JABBER_CONNECT_STEPS); |
2086 | 2365 |
4491 | 2366 if (!(jd->gjc = gjab_new(loginname, account->password, gc))) { |
2086 | 2367 g_free(loginname); |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2368 gaim_debug(GAIM_DEBUG_ERROR, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2369 "unable to connect (jab_new failed)\n"); |
5572 | 2370 gaim_connection_error(gc, _("Unable to connect")); |
2086 | 2371 return; |
2372 } | |
2373 | |
2374 g_free(loginname); | |
2956 | 2375 gjab_state_handler(jd->gjc, jabber_handlestate); |
2376 gjab_packet_handler(jd->gjc, jabber_handlepacket); | |
2377 jd->gjc->queries = g_hash_table_new(g_str_hash, g_str_equal); | |
2378 gjab_start(jd->gjc); | |
2086 | 2379 } |
2380 | |
2381 static gboolean jabber_destroy_hash(gpointer key, gpointer val, gpointer data) { | |
3770 | 2382 g_free(key); |
2086 | 2383 g_free(val); |
2384 return TRUE; | |
2385 } | |
2386 | |
3311 | 2387 static gboolean jabber_destroy_buddy_hash(gpointer key, gpointer val, gpointer data) { |
2388 struct jabber_buddy_data *jbd = val; | |
2389 while (jbd->resources) { | |
2390 g_free(((jab_res_info) ((GSList *)jbd->resources)->data)->name); | |
2391 if(((jab_res_info) ((GSList *)jbd->resources)->data)->away_msg) | |
2392 g_free(((jab_res_info) ((GSList *)jbd->resources)->data)->away_msg); | |
2393 g_free(((GSList *)jbd->resources)->data); | |
2394 jbd->resources = g_slist_remove(jbd->resources, ((GSList *)jbd->resources)->data); | |
2395 | |
2396 } | |
2397 if(jbd->error_msg) | |
2398 g_free(jbd->error_msg); | |
2399 g_free(key); | |
2400 g_free(jbd); | |
2401 return TRUE; | |
2402 } | |
2403 | |
2404 | |
2086 | 2405 static gboolean jabber_free(gpointer data) |
2406 { | |
2956 | 2407 struct jabber_data *jd = data; |
2408 | |
3236 | 2409 if(jd->gjc != NULL) { |
3486 | 2410 g_free(jd->gjc->sid); |
3236 | 2411 gjab_delete(jd->gjc); |
2412 jd->gjc = NULL; | |
2413 } | |
2956 | 2414 g_free(jd); |
2415 | |
2086 | 2416 return FALSE; |
2417 } | |
2418 | |
5572 | 2419 static void jabber_close(GaimConnection *gc) |
2086 | 2420 { |
2421 struct jabber_data *jd = gc->proto_data; | |
2956 | 2422 |
2423 if(jd) { | |
2424 GSList *jcs = jd->chats; | |
2425 | |
2426 /* Free-up the jabber_chat struct allocs and the list */ | |
2427 while (jcs) { | |
3311 | 2428 gaim_jid_free(((struct jabber_chat *)jcs->data)->gjid); |
2956 | 2429 g_free(jcs->data); |
2430 jcs = jcs->next; | |
2431 } | |
2432 g_slist_free(jd->chats); | |
2433 | |
3311 | 2434 /* Free-up the buddy data hash */ |
2435 if(jd->buddies != NULL) | |
2436 { | |
2437 g_hash_table_foreach_remove(jd->buddies, jabber_destroy_buddy_hash, NULL); | |
2438 g_hash_table_destroy(jd->buddies); | |
2439 jd->buddies = NULL; | |
2956 | 2440 } |
2441 | |
2442 /* Free-up the pending queries memories and the list */ | |
3236 | 2443 if(jd->gjc != NULL && jd->gjc->queries != NULL) { |
2956 | 2444 g_hash_table_foreach_remove(jd->gjc->queries, jabber_destroy_hash, NULL); |
2445 g_hash_table_destroy(jd->gjc->queries); | |
2446 jd->gjc->queries = NULL; | |
2447 } | |
2448 } | |
2300
d2686f757d6e
[gaim-migrate @ 2310]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2289
diff
changeset
|
2449 if (gc->inpa) |
d2686f757d6e
[gaim-migrate @ 2310]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2289
diff
changeset
|
2450 gaim_input_remove(gc->inpa); |
2956 | 2451 |
2452 if(jd) { | |
3613 | 2453 g_timeout_add(0, jabber_free, jd); |
3236 | 2454 if(jd->gjc != NULL) |
2455 xmlnode_free(jd->gjc->current); | |
2956 | 2456 } |
2086 | 2457 gc->proto_data = NULL; |
2458 } | |
2459 | |
5572 | 2460 static int jabber_send_typing(GaimConnection *gc, char *who, int typing) |
3311 | 2461 { |
2462 xmlnode x, y; | |
2463 char *realwho; | |
2464 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; | |
2465 jab_res_info jri = jabber_find_resource(gc, who); | |
2466 | |
2467 if(!jri || !jri->has_composing) | |
2468 return 0; | |
2469 | |
2470 if((realwho = get_realwho(gjc, who, FALSE, NULL)) == NULL) | |
2471 return 0; | |
3596 | 2472 |
3311 | 2473 x = xmlnode_new_tag("message"); |
2474 xmlnode_put_attrib(x, "to", realwho); | |
2475 | |
2476 y = xmlnode_insert_tag(x, "x"); | |
2477 xmlnode_put_attrib(y, "xmlns", "jabber:x:event"); | |
2478 | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
2479 if(typing == GAIM_TYPING) |
3311 | 2480 xmlnode_insert_tag(y, "composing"); |
3596 | 2481 |
3311 | 2482 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2483 xmlnode_free(x); | |
2484 g_free(realwho); | |
2485 return JABBER_TYPING_NOTIFY_INT; | |
2486 } | |
2487 | |
5093 | 2488 static void insert_message(xmlnode x, const char *message, gboolean use_xhtml) { |
2489 xmlnode y; | |
5110 | 2490 char *buf = g_strdup_printf("<html xmlns='http://jabber.org/protocol/xhtml-im'><body>%s</body></html>", message); |
2491 char *xhtml, *plain; | |
2492 | |
2493 html_to_xhtml(buf, &xhtml, &plain); | |
2494 g_free(buf); | |
2495 | |
5093 | 2496 y = xmlnode_insert_tag(x, "body"); |
5110 | 2497 xmlnode_insert_cdata(y, plain, -1); |
2498 g_free(plain); | |
5093 | 2499 |
2500 if(use_xhtml) { | |
5110 | 2501 y = xmlnode_str(xhtml, strlen(xhtml)); |
5093 | 2502 if(y) { |
2503 xmlnode_insert_tag_node(x, y); | |
2504 xmlnode_free(y); | |
2505 } else { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2506 gaim_debug(GAIM_DEBUG_ERROR, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
2507 "holy cow, html_to_xhtml didn't work right!\n"); |
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 "the invalid XML: %s\n", xhtml); |
5093 | 2510 } |
2511 } | |
5110 | 2512 g_free(xhtml); |
5093 | 2513 } |
2514 | |
5572 | 2515 static int jabber_send_im(GaimConnection *gc, const char *who, const char *message, int len, int flags) |
2086 | 2516 { |
2517 xmlnode x, y; | |
3311 | 2518 char *thread_id = NULL; |
2956 | 2519 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
5093 | 2520 jab_res_info jri = jabber_find_resource(gc, who); |
2086 | 2521 |
2522 if (!who || !message) | |
2123
56c4382f2909
[gaim-migrate @ 2133]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2112
diff
changeset
|
2523 return 0; |
2086 | 2524 |
2525 x = xmlnode_new_tag("message"); | |
4927 | 2526 xmlnode_put_attrib(x, "to", who); |
2527 | |
2528 thread_id = jabber_get_convo_thread(gjc, who); | |
3311 | 2529 if(thread_id) |
2530 { | |
3769 | 2531 if(strcmp(thread_id, "")) { |
2532 y = xmlnode_insert_tag(x, "thread"); | |
2533 xmlnode_insert_cdata(y, thread_id, -1); | |
2534 } | |
3311 | 2535 g_free(thread_id); |
2536 } | |
2537 | |
2086 | 2538 xmlnode_put_attrib(x, "type", "chat"); |
2539 | |
3311 | 2540 /* let other clients know we support typing notification */ |
2541 y = xmlnode_insert_tag(x, "x"); | |
2542 xmlnode_put_attrib(y, "xmlns", "jabber:x:event"); | |
2543 xmlnode_insert_tag(y, "composing"); | |
2544 | |
2086 | 2545 if (message && strlen(message)) { |
5093 | 2546 insert_message(x, message, jri ? jri->has_xhtml : TRUE); |
2086 | 2547 } |
2548 | |
2956 | 2549 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2086 | 2550 xmlnode_free(x); |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2300
diff
changeset
|
2551 return 1; |
2086 | 2552 } |
2553 | |
3105 | 2554 /* |
2555 * Add/update buddy's roster entry on server | |
3349 | 2556 * |
2557 * If "alias" or "group" are NULL, gets them from Gaim's current buddylist values | |
2558 * for the buddy. | |
3105 | 2559 */ |
5572 | 2560 static void jabber_roster_update(GaimConnection *gc, const char *name, const char *alias, const char *group) |
3105 | 2561 { |
2562 xmlnode x, y; | |
2563 char *realwho; | |
2564 gjconn gjc; | |
2565 struct buddy *buddy = NULL; | |
2566 struct group *buddy_group = NULL; | |
3867 | 2567 const char *my_alias = NULL; |
2568 const char *my_group = NULL; | |
3770 | 2569 |
3105 | 2570 if(gc && gc->proto_data && ((struct jabber_data *)gc->proto_data)->gjc && name) { |
3311 | 2571 gaim_jid gjid; |
3105 | 2572 gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
2573 | |
3311 | 2574 if((realwho = get_realwho(gjc, name, FALSE, &gjid)) == NULL) |
2575 return; | |
2576 | |
2577 /* FIXME: transport */ | |
2578 if(gjid->user == NULL) { | |
2579 g_free(realwho); | |
2580 gaim_jid_free(gjid); | |
2581 return; | |
3105 | 2582 } |
3311 | 2583 gaim_jid_free(gjid); |
3105 | 2584 |
2585 x = jutil_iqnew(JPACKET__SET, NS_ROSTER); | |
2586 y = xmlnode_insert_tag(xmlnode_get_tag(x, "query"), "item"); | |
2587 xmlnode_put_attrib(y, "jid", realwho); | |
2588 | |
4687 | 2589 buddy = gaim_find_buddy(gc->account, realwho); |
4349 | 2590 |
3349 | 2591 /* |
2592 * See if there's an explict (new?) alias for the buddy or we can pull | |
2593 * one out of current Gaim buddylist data for him. | |
2594 */ | |
2595 if(alias && alias[0] != '\0') { | |
2596 my_alias = alias; | |
4705 | 2597 } else if(buddy && buddy->alias) { |
4227 | 2598 my_alias = buddy->alias; |
3349 | 2599 } |
2600 | |
2601 /* If there's an alias for the buddy, it's not 0-length | |
3105 | 2602 * and it doesn't match his JID, add the "name" attribute. |
2603 */ | |
3349 | 2604 if(my_alias != NULL && my_alias[0] != '\0' && strcmp(realwho, my_alias)) |
3311 | 2605 { |
3642 | 2606 xmlnode_put_attrib(y, "name", my_alias); |
3105 | 2607 } |
2608 | |
2609 /* | |
3349 | 2610 * See if there's an explict (new?) group for the buddy or pull |
2611 * one out of current Gaim buddylist data for him. | |
3105 | 2612 */ |
3349 | 2613 if(group && group[0] != '\0') { |
2614 my_group = group; | |
4687 | 2615 } else if((buddy_group = gaim_find_buddys_group(buddy)) != NULL) { |
3349 | 2616 my_group = buddy_group->name; |
2617 } | |
2618 | |
2619 /* | |
2620 * Send what group the buddy's in along with the roster item. | |
2621 */ | |
2622 if(my_group != NULL && my_group[0] != '\0') { | |
2623 xmlnode z = xmlnode_insert_tag(y, "group"); | |
2624 xmlnode_insert_cdata(z, my_group, -1); | |
3105 | 2625 } |
2626 | |
2627 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); | |
2628 | |
2629 xmlnode_free(x); | |
2630 g_free(realwho); | |
2631 } | |
2632 } | |
2633 | |
3136 | 2634 /* |
3349 | 2635 * Add/update buddy's alias on server |
2636 * | |
2637 * This is just a roster update using existing, local buddylist data | |
2638 */ | |
5572 | 2639 static void jabber_alias_buddy(GaimConnection *gc, const char *name, const char *alias) |
3349 | 2640 { |
4269 | 2641 jabber_roster_update(gc, name, alias, NULL); |
3349 | 2642 } |
2643 | |
2644 /* | |
3136 | 2645 * Change buddy's group on server roster |
2646 */ | |
5572 | 2647 static void jabber_group_change(GaimConnection *gc, const char *name, const char *old_group, const char *new_group) |
3136 | 2648 { |
3349 | 2649 if(old_group && new_group && strcmp(old_group, new_group)) |
2650 jabber_roster_update(gc, name, NULL, new_group); | |
2651 } | |
2652 | |
2653 /* | |
2654 * Group rename | |
2655 * | |
2656 * Jabber doesn't have "groups," per se. "Group" is simply a JID attribute. | |
2657 * So we iterate through the list of buddies that are in the group and change | |
2658 * the group attribute for each of them. | |
2659 */ | |
5572 | 2660 static void jabber_rename_group(GaimConnection *gc, |
3867 | 2661 const char *old_group, |
2662 const char *new_group, | |
3349 | 2663 GList *members) |
2664 { | |
2665 if(old_group && new_group && strcmp(old_group, new_group)) | |
2666 while(members) { | |
2667 jabber_group_change(gc, (char *)(members->data), old_group, new_group); | |
2668 members = members->next; | |
2669 } | |
3136 | 2670 } |
2671 | |
5572 | 2672 static void jabber_add_buddy(GaimConnection *gc, const char *name) |
2086 | 2673 { |
3136 | 2674 xmlnode x; |
2086 | 2675 char *realwho; |
2956 | 2676 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
3311 | 2677 gaim_jid gjid; |
5572 | 2678 GaimAccount *account = gaim_connection_get_account(gc); |
2086 | 2679 |
2680 if (!((struct jabber_data *)gc->proto_data)->did_import) | |
2681 return; | |
2682 | |
3311 | 2683 /* |
2684 * If there's no name or the name is ourself | |
2685 */ | |
5572 | 2686 if(!name || !strcmp(gaim_account_get_username(account), name)) |
2086 | 2687 return; |
2688 | |
3311 | 2689 if((realwho = get_realwho(gjc, name, FALSE, &gjid)) == NULL) { |
3427 | 2690 char *msg = g_strdup_printf(_("The user %s is an invalid Jabber I.D. and was " |
2691 "therefore not added."), name); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2692 gaim_notify_error(gc, NULL, _("Unable to add buddy."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2693 _("Jabber Error")); |
3311 | 2694 g_free(msg); |
2695 jabber_remove_gaim_buddy(gc, name); | |
2696 return; | |
2086 | 2697 } |
2698 | |
3311 | 2699 /* FIXME: transport */ |
2700 if(gjid->user == NULL) { | |
2701 g_free(realwho); | |
2702 gaim_jid_free(gjid); | |
2703 return; | |
2704 } | |
2705 gaim_jid_free(gjid); | |
2706 | |
2086 | 2707 x = xmlnode_new_tag("presence"); |
2708 xmlnode_put_attrib(x, "to", realwho); | |
2709 xmlnode_put_attrib(x, "type", "subscribe"); | |
2956 | 2710 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2711 xmlnode_free(x); | |
2086 | 2712 |
3349 | 2713 jabber_roster_update(gc, realwho, NULL, NULL); |
3105 | 2714 |
2086 | 2715 g_free(realwho); |
2716 } | |
2717 | |
5572 | 2718 static void jabber_remove_buddy(GaimConnection *gc, char *name, char *group) |
2086 | 2719 { |
3048 | 2720 xmlnode x; |
2086 | 2721 char *realwho; |
2956 | 2722 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
2086 | 2723 |
3311 | 2724 if(!name || (realwho = get_realwho(gjc, name, FALSE, NULL)) == NULL) |
2086 | 2725 return; |
2726 | |
2956 | 2727 x = xmlnode_new_tag("presence"); |
2728 xmlnode_put_attrib(x, "to", realwho); | |
2729 xmlnode_put_attrib(x, "type", "unsubscribe"); | |
2730 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); | |
2086 | 2731 g_free(realwho); |
2732 xmlnode_free(x); | |
2733 } | |
2734 | |
4916 | 2735 #if 0 /* Faceprint! Look here! */ |
3314 | 2736 /* |
2737 * Remove a buddy item from the roster entirely | |
2738 */ | |
5572 | 2739 static void jabber_remove_buddy_roster_item(GaimConnection *gc, char *name) |
3314 | 2740 { |
3340 | 2741 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
3314 | 2742 char *realwho; |
3340 | 2743 |
2744 if((realwho = get_realwho(gjc, name, FALSE, NULL)) != NULL) { | |
2745 xmlnode x = jutil_iqnew(JPACKET__SET, NS_ROSTER); | |
2746 xmlnode y = xmlnode_insert_tag(xmlnode_get_tag(x, "query"), "item"); | |
2747 xmlnode_put_attrib(y, "jid", realwho); | |
2748 xmlnode_put_attrib(y, "subscription", "remove"); | |
2749 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); | |
2750 g_free(realwho); | |
2751 xmlnode_free(x); | |
2752 } | |
2753 } | |
4916 | 2754 #endif |
3340 | 2755 |
2756 /* | |
2757 * Unsubscribe a buddy from our presence | |
2758 */ | |
5572 | 2759 static void jabber_unsubscribe_buddy_from_us(GaimConnection *gc, const char *name) |
3340 | 2760 { |
2761 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; | |
2762 char *realwho; | |
2763 | |
2764 if((realwho = get_realwho(gjc, name, FALSE, NULL)) != NULL) { | |
2765 xmlnode g = xmlnode_new_tag("presence"); | |
2766 xmlnode_put_attrib(g, "to", realwho); | |
2767 xmlnode_put_attrib(g, "type", "unsubscribed"); | |
2768 gjab_send(gjc, g); | |
2769 xmlnode_free(g); | |
2770 } | |
2771 } | |
2772 | |
2773 /* | |
2774 * Common code for setting ourselves invisible/visible to buddy | |
2775 */ | |
5572 | 2776 static void jabber_invisible_to_buddy_common(GaimConnection *gc, const char *name, gboolean invisible) |
3340 | 2777 { |
3314 | 2778 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
3340 | 2779 char *realwho; |
2780 | |
2781 if((realwho = get_realwho(gjc, name, FALSE, NULL)) != NULL) { | |
5135 | 2782 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, realwho, TRUE); |
3340 | 2783 xmlnode g = xmlnode_new_tag("presence"); |
2784 | |
2785 xmlnode_put_attrib(g, "to", realwho); | |
2786 | |
2787 if(invisible) | |
2788 xmlnode_put_attrib(g, "type", "invisible"); | |
2789 | |
2790 gjab_send(gjc, g); | |
2791 | |
2792 g_free(realwho); | |
2793 xmlnode_free(g); | |
2794 | |
2795 if(jbd) { | |
2796 if(invisible) { | |
2797 jbd->invisible |= JABBER_BUD_INVIS; | |
2798 } else { | |
2799 jbd->invisible &= ~JABBER_BUD_INVIS; | |
2800 } | |
2801 } | |
2802 } | |
2803 } | |
2804 | |
2805 /* | |
2806 * Make ourselves temporarily invisible to a buddy | |
2807 */ | |
5572 | 2808 static void jabber_invisible_to_buddy(GaimConnection *gc, const char *name) |
3340 | 2809 { |
2810 jabber_invisible_to_buddy_common(gc, name, TRUE); | |
2811 } | |
2812 | |
2813 /* | |
2814 * Make ourselves visible to a buddy | |
2815 */ | |
5572 | 2816 static void jabber_visible_to_buddy(GaimConnection *gc, const char *name) |
3340 | 2817 { |
2818 jabber_invisible_to_buddy_common(gc, name, FALSE); | |
2819 } | |
2820 | |
2821 /* | |
2822 * Function used by the g_hash_table_foreach() in invisible_to_all_buddies() to | |
2823 * actually set the status. | |
2824 * | |
2825 * key is unused | |
2826 * value is the pointer to the jabber_buddy_data struct | |
2827 * data is gboolean: TRUE (invisible) or FALSE (not invisible) | |
2828 */ | |
2829 static void set_invisible_to_buddy_status(gpointer key, gpointer val, gpointer data) { | |
2830 struct jabber_buddy_data *jbd = val; | |
2831 gboolean invisible = (gboolean) data; | |
2832 | |
2833 if(jbd) { | |
2834 if(invisible) { | |
2835 jbd->invisible = JABBER_SERV_INVIS | JABBER_BUD_INVIS; | |
2836 } else { | |
2837 /* | |
2838 * If we've asserted server-level invisibility, cancelling | |
2839 * it removes explicit buddy invisibility settings too. | |
2840 */ | |
2841 if(jbd->invisible & JABBER_SERV_INVIS) | |
2842 jbd->invisible = JABBER_NOT_INVIS; | |
2843 } | |
2844 } | |
2845 } | |
2846 | |
2847 /* | |
2848 * Show we've set ourselves invisible/visible to all buddies on the server | |
2849 * | |
2850 * Used when we set server-wide invisibility so that individual buddy menu | |
2851 * entries show the proper option. | |
2852 */ | |
5572 | 2853 static void invisible_to_all_buddies(GaimConnection *gc, gboolean invisible) |
3340 | 2854 { |
2855 struct jabber_data *jd = gc->proto_data; | |
2856 | |
2857 if(jd->buddies != NULL) | |
2858 g_hash_table_foreach(jd->buddies, set_invisible_to_buddy_status, (gpointer) invisible); | |
3314 | 2859 } |
2860 | |
5572 | 2861 static const char *jabber_list_icon(GaimAccount *a, struct buddy *b) |
2086 | 2862 { |
4687 | 2863 return "jabber"; |
2864 } | |
4916 | 2865 |
2866 static void jabber_list_emblems(struct buddy *b, char **se, char **sw, char **nw, char **ne) | |
2867 { | |
5135 | 2868 struct jabber_buddy_data *jbd = jabber_find_buddy(b->account->gc, b->name, FALSE); |
2869 | |
2870 if(!GAIM_BUDDY_IS_ONLINE(b)) { | |
2871 if (jbd && jbd->error_msg) | |
4927 | 2872 *nw = "error"; |
5135 | 2873 |
2874 if(jbd && (jbd->subscription & JABBER_SUB_PENDING || | |
2875 !(jbd->subscription & JABBER_SUB_TO))) | |
2876 *se = "notauthorized"; | |
2877 else | |
2878 *se = "offline"; | |
2879 | |
4916 | 2880 } else { |
2881 switch (b->uc) { | |
2882 case UC_AWAY: | |
2883 *se = "away"; | |
2884 break; | |
2885 case UC_CHAT: | |
2886 *se = "chat"; | |
2887 break; | |
2888 case UC_XA: | |
2889 *se = "extendedaway"; | |
2890 break; | |
2891 case UC_DND: | |
2892 *se = "dnd"; | |
2893 break; | |
2894 case UC_ERROR: | |
2895 *se = "error"; | |
2896 break; | |
2897 } | |
2086 | 2898 } |
4916 | 2899 } |
2086 | 2900 |
5572 | 2901 static GList *jabber_chat_info(GaimConnection *gc) |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2902 { |
2956 | 2903 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
2904 | |
2905 static char *confserv = NULL; /* this pointer must be persistent */ | |
2906 gchar *server; | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2907 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2908 GList *m = NULL; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2909 struct proto_chat_entry *pce; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2910 |
2956 | 2911 /* This is a scientific wild-ass guess... |
2912 * | |
2913 * If there are more than two "components" to the current server name, | |
2914 * lop-off the left-most component and replace with "conference." | |
2915 */ | |
2916 if(confserv != NULL) { | |
2917 g_free(confserv); /* dispose of the old value */ | |
2918 } | |
2919 | |
2920 if((server = g_strdup(gjc->user->server)) == NULL) { | |
2921 confserv = g_strdup(DEFAULT_GROUPCHAT); | |
2922 } else { | |
2923 gchar **splits, **index; | |
2924 gchar *tmp; | |
2925 int cnt = 0; | |
2926 | |
2927 | |
2928 index = splits = g_strsplit(server, ".", -1); /* split the connected server */ | |
2929 | |
2930 while(*(index++)) /* index to the end--counting the parts */ | |
2931 ++cnt; | |
2932 | |
2933 /* | |
2934 * If we've more than two parts, point to the second part. Else point | |
2935 * to the start. | |
2936 */ | |
2937 if(cnt > 2) { | |
2938 index -= cnt; | |
2939 } else { | |
2940 index = splits; | |
2941 } | |
2942 | |
2943 /* Put it together */ | |
2944 confserv = g_strjoin(".", "conference", (tmp = g_strjoinv(".", index)), NULL); | |
2945 | |
2946 g_free(server); /* we don't need this stuff no more */ | |
2947 g_free(tmp); | |
2948 g_strfreev(splits); | |
2949 } | |
2950 | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2951 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2952 pce->label = _("Room:"); |
5234 | 2953 pce->identifier = "room"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2954 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2955 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2956 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2957 pce->label = _("Server:"); |
5234 | 2958 pce->identifier = "server"; |
2956 | 2959 pce->def = confserv; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2960 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2961 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2962 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2963 pce->label = _("Handle:"); |
5234 | 2964 pce->identifier = "handle"; |
2956 | 2965 pce->def = gjc->user->user; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2966 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2967 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
2968 return m; |
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 |
5572 | 2971 static void jabber_join_chat(GaimConnection *gc, GHashTable *data) |
2086 | 2972 { |
2973 xmlnode x; | |
5234 | 2974 char *room, *server, *handle; |
2086 | 2975 char *realwho; |
2956 | 2976 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
2977 GSList *jcs = ((struct jabber_data *)gc->proto_data)->chats; | |
2086 | 2978 struct jabber_chat *jc; |
3311 | 2979 gaim_jid gjid; |
2086 | 2980 |
5234 | 2981 room = g_hash_table_lookup(data, "room"); |
2982 server = g_hash_table_lookup(data, "server"); | |
2983 handle = g_hash_table_lookup(data, "handle"); | |
2984 | |
2985 if (!room || !server || !handle) | |
2086 | 2986 return; |
2987 | |
5234 | 2988 realwho = create_valid_jid(room, server, handle); |
2989 gaim_debug(GAIM_DEBUG_INFO, "jabber", "%s\n", realwho); | |
2086 | 2990 |
3311 | 2991 if((gjid = gaim_jid_new(realwho)) == NULL) { |
3427 | 2992 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
|
2993 gaim_notify_error(gc, NULL, _("Unable to join chat"), msg); |
3236 | 2994 g_free(msg); |
3311 | 2995 g_free(realwho); |
3236 | 2996 return; |
2997 } | |
2956 | 2998 |
3311 | 2999 if((jc = find_any_chat(gc, gjid)) != NULL) { |
2956 | 3000 switch(jc->state) { |
3001 case JCS_PENDING: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3002 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3003 "attempt to re-join already pending Jabber chat! (ignoring)\n"); |
2956 | 3004 g_free(realwho); /* yuck! */ |
3311 | 3005 gaim_jid_free(gjid); |
2956 | 3006 return; |
3007 case JCS_ACTIVE: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3008 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3009 "attempt to re-join already active Jabber chat! (ignoring)\n"); |
2956 | 3010 g_free(realwho); /* yuck! */ |
3311 | 3011 gaim_jid_free(gjid); |
2956 | 3012 return; |
3013 case JCS_CLOSED: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3014 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3015 "rejoining previously closed Jabber chat\n"); |
2956 | 3016 break; |
3017 default: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3018 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3019 "found Jabber chat in unknown state! (ignoring)\n"); |
2956 | 3020 g_free(realwho); /* yuck! */ |
3311 | 3021 gaim_jid_free(gjid); |
2956 | 3022 return; |
3023 } | |
3024 } else { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3025 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3026 "joining completely new Jabber chat\n"); |
2956 | 3027 jc = g_new0(struct jabber_chat, 1); |
3311 | 3028 jc->gjid = gjid; |
2956 | 3029 jc->gc = gc; |
3030 ((struct jabber_data *)gc->proto_data)->chats = g_slist_append(jcs, jc); | |
4687 | 3031 // add_buddy(gc->account, _("Chats"), realwho, realwho); |
2956 | 3032 } |
3033 | |
3034 jc->state = JCS_PENDING; | |
3035 | |
2086 | 3036 x = jutil_presnew(0, realwho, NULL); |
2956 | 3037 gjab_send(gjc, x); |
2086 | 3038 xmlnode_free(x); |
3039 g_free(realwho); | |
3040 } | |
3041 | |
5572 | 3042 static void jabber_chat_invite(GaimConnection *gc, int id, const char *message, const char *name) |
2086 | 3043 { |
3044 xmlnode x, y; | |
3045 struct jabber_data *jd = gc->proto_data; | |
2956 | 3046 gjconn gjc = jd->gjc; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
3047 struct jabber_chat *jc = NULL; |
2086 | 3048 char *realwho, *subject; |
3049 | |
3311 | 3050 if(!name || (realwho = get_realwho(gjc, name, FALSE, NULL)) == NULL) |
2086 | 3051 return; |
3052 | |
3053 /* find which chat we're inviting to */ | |
2956 | 3054 if(jabber_find_chat_by_convo_id(gc, id, &jc) != 0) |
2086 | 3055 return; |
3056 | |
3057 x = xmlnode_new_tag("message"); | |
3058 xmlnode_put_attrib(x, "to", realwho); | |
3311 | 3059 |
2086 | 3060 g_free(realwho); |
3061 | |
3062 y = xmlnode_insert_tag(x, "x"); | |
3063 xmlnode_put_attrib(y, "xmlns", "jabber:x:conference"); | |
3311 | 3064 subject = g_strdup_printf("%s@%s", jc->gjid->user, jc->gjid->server); |
2086 | 3065 xmlnode_put_attrib(y, "jid", subject); |
3066 g_free(subject); | |
3067 | |
3068 if (message && strlen(message)) { | |
5093 | 3069 insert_message(x, message, FALSE); |
2086 | 3070 } |
3071 | |
2956 | 3072 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2086 | 3073 xmlnode_free(x); |
3074 } | |
3075 | |
5572 | 3076 static void jabber_chat_leave(GaimConnection *gc, int id) |
2086 | 3077 { |
3078 struct jabber_data *jd = gc->proto_data; | |
2956 | 3079 gjconn gjc = jd->gjc; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
3080 struct jabber_chat *jc = NULL; |
3311 | 3081 char *chatname; |
2086 | 3082 xmlnode x; |
3083 | |
2956 | 3084 /* Find out which chat we're leaving */ |
3085 if(jabber_find_chat_by_convo_id(gc, id, &jc) != 0) | |
2086 | 3086 return; |
3087 | |
3311 | 3088 chatname = g_strdup_printf("%s@%s", jc->gjid->user, jc->gjid->server); |
3089 x = jutil_presnew(0, chatname, NULL); | |
3090 g_free(chatname); | |
2086 | 3091 xmlnode_put_attrib(x, "type", "unavailable"); |
2956 | 3092 gjab_send(gjc, x); |
2086 | 3093 xmlnode_free(x); |
3094 jc->b = NULL; | |
3095 } | |
3096 | |
5572 | 3097 static int jabber_chat_send(GaimConnection *gc, int id, char *message) |
2086 | 3098 { |
3099 xmlnode x, y; | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
3100 struct jabber_chat *jc = NULL; |
2086 | 3101 char *chatname; |
2956 | 3102 int retval = 0; |
3103 | |
3104 /* Find out which chat we're sending to */ | |
3105 if((retval = jabber_find_chat_by_convo_id(gc, id, &jc)) != 0) | |
3106 return(retval); | |
2086 | 3107 |
3108 x = xmlnode_new_tag("message"); | |
3311 | 3109 xmlnode_put_attrib(x, "from", jc->gjid->full); |
3110 chatname = g_strdup_printf("%s@%s", jc->gjid->user, jc->gjid->server); | |
2086 | 3111 xmlnode_put_attrib(x, "to", chatname); |
3112 g_free(chatname); | |
3113 xmlnode_put_attrib(x, "type", "groupchat"); | |
3114 | |
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3115 if (message && strlen(message) > strlen("/topic ") && |
4793 | 3116 !g_ascii_strncasecmp(message, "/topic ", strlen("/topic "))) { |
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3117 char buf[8192]; |
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3118 y = xmlnode_insert_tag(x, "subject"); |
3642 | 3119 xmlnode_insert_cdata(y, message + strlen("/topic "), -1); |
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3120 y = xmlnode_insert_tag(x, "body"); |
3642 | 3121 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
|
3122 xmlnode_insert_cdata(y, buf, -1); |
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2278
diff
changeset
|
3123 } else if (message && strlen(message)) { |
5093 | 3124 insert_message(x, message, FALSE); |
2086 | 3125 } |
3126 | |
2956 | 3127 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2086 | 3128 xmlnode_free(x); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3129 return 0; |
2086 | 3130 } |
3131 | |
5572 | 3132 static void jabber_chat_whisper(GaimConnection *gc, int id, char *who, char *message) |
2086 | 3133 { |
5093 | 3134 xmlnode x; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
3135 struct jabber_chat *jc = NULL; |
2086 | 3136 char *chatname; |
3137 | |
2956 | 3138 /* Find out which chat we're whispering to */ |
3139 if(jabber_find_chat_by_convo_id(gc, id, &jc) != 0) | |
2086 | 3140 return; |
3141 | |
3142 x = xmlnode_new_tag("message"); | |
3311 | 3143 xmlnode_put_attrib(x, "from", jc->gjid->full); |
3144 chatname = g_strdup_printf("%s@%s/%s", jc->gjid->user, jc->gjid->server, who); | |
2086 | 3145 xmlnode_put_attrib(x, "to", chatname); |
3146 g_free(chatname); | |
3147 xmlnode_put_attrib(x, "type", "normal"); | |
3148 | |
3149 if (message && strlen(message)) { | |
5093 | 3150 insert_message(x, message, FALSE); |
2086 | 3151 } |
3152 | |
2956 | 3153 gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); |
2086 | 3154 xmlnode_free(x); |
3155 } | |
3156 | |
3157 static char *jabber_normalize(const char *s) | |
3158 { | |
3159 static char buf[BUF_LEN]; | |
3160 char *t, *u; | |
3161 int x = 0; | |
3162 | |
3163 g_return_val_if_fail((s != NULL), NULL); | |
3164 | |
2956 | 3165 /* Somebody called us with s == NULL once... */ |
3166 if(s == NULL) { | |
3167 return(NULL); | |
3168 } else { | |
4793 | 3169 u = t = g_utf8_strdown(s, -1); |
2956 | 3170 |
3171 while (*t && (x < BUF_LEN - 1)) { | |
3172 if (*t != ' ') | |
3173 buf[x++] = *t; | |
3174 t++; | |
3175 } | |
3176 buf[x] = '\0'; | |
3177 g_free(u); | |
3178 | |
3179 if (!strchr(buf, '@')) { | |
4927 | 3180 strcat(buf, "@" DEFAULT_SERVER); /* this isn't always right, but eh */ |
2956 | 3181 } else if ((u = strchr(strchr(buf, '@'), '/')) != NULL) { |
3182 *u = '\0'; | |
3183 } | |
3184 | |
3185 return buf; | |
2086 | 3186 } |
3187 } | |
3188 | |
5572 | 3189 static void jabber_get_info(GaimConnection *gc, const char *who) { |
2086 | 3190 xmlnode x; |
3191 char *id; | |
2956 | 3192 char *realwho; |
2086 | 3193 struct jabber_data *jd = gc->proto_data; |
2956 | 3194 gjconn gjc = jd->gjc; |
2086 | 3195 |
3311 | 3196 if((realwho = get_realwho(gjc, who, TRUE, NULL)) == NULL) |
3197 return; | |
3198 | |
2086 | 3199 x = jutil_iqnew(JPACKET__GET, NS_VCARD); |
2956 | 3200 xmlnode_put_attrib(x, "to", realwho); |
3311 | 3201 |
2956 | 3202 g_free(realwho); |
3203 | |
3204 id = gjab_getid(gjc); | |
2086 | 3205 xmlnode_put_attrib(x, "id", id); |
3206 | |
2956 | 3207 g_hash_table_insert(jd->gjc->queries, g_strdup(id), g_strdup("vCard")); |
3208 | |
3209 gjab_send(gjc, x); | |
2086 | 3210 |
3211 xmlnode_free(x); | |
3311 | 3212 } |
3213 | |
5572 | 3214 static void jabber_get_error_msg(GaimConnection *gc, const char *who) { |
3311 | 3215 struct jabber_data *jd = gc->proto_data; |
3216 gjconn gjc = jd->gjc; | |
3217 gchar **str_arr = (gchar **) g_new(gpointer, 3); | |
3218 gchar **ap = str_arr; | |
3219 gchar *realwho, *final; | |
3220 struct jabber_buddy_data *jbd; | |
3221 | |
3222 if((realwho = get_realwho(gjc, who, FALSE, NULL)) == NULL) { | |
3223 g_strfreev(str_arr); | |
3224 return; | |
3225 } | |
3226 | |
5135 | 3227 jbd = jabber_find_buddy(gc, realwho, TRUE); |
3311 | 3228 |
5236 | 3229 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _("Jabber ID"), realwho); |
3230 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _("Error"), jbd->error_msg); | |
3311 | 3231 *ap = NULL; |
3770 | 3232 |
3311 | 3233 final= g_strjoinv(NULL, str_arr); |
3770 | 3234 |
3311 | 3235 g_strfreev(str_arr); |
3236 | |
3237 g_show_info_text(gc, realwho, 2, final, NULL); | |
3238 g_free(realwho); | |
3239 g_free(final); | |
2086 | 3240 } |
3241 | |
5572 | 3242 static void jabber_get_away_msg(GaimConnection *gc, const char *who) { |
2956 | 3243 struct jabber_data *jd = gc->proto_data; |
3244 gjconn gjc = jd->gjc; | |
3311 | 3245 int num_resources; |
3246 gaim_jid gjid; | |
3247 char *buddy = get_realwho(gjc, who, FALSE, &gjid); | |
5135 | 3248 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, buddy, TRUE); |
3311 | 3249 gchar **str_arr; |
3250 gchar **ap; | |
3251 gchar *realwho, *final; | |
3252 GSList *resources; | |
3253 int i; | |
3254 | |
3255 if(!buddy) | |
3256 return; | |
3257 | |
3258 if(!gjid->resource) { | |
3259 num_resources = g_slist_length(jbd->resources); | |
3260 resources = jbd->resources; | |
3261 } else { | |
3262 num_resources = 1; | |
3263 resources = jbd->resources; | |
3264 while(strcasecmp(((jab_res_info)resources->data)->name, gjid->resource)) | |
3265 resources = resources->next; | |
3266 } | |
3267 | |
3268 gaim_jid_free(gjid); | |
2956 | 3269 |
3270 /* space for all elements: Jabber I.D. + "status" + NULL (list terminator) */ | |
3311 | 3271 str_arr = (gchar **) g_new(gpointer, num_resources*2 + 1); |
3272 ap = str_arr; | |
3273 | |
3274 for(i=0; i<num_resources; i++) | |
3275 { | |
3276 jab_res_info jri = resources->data; | |
4450 | 3277 char *status; |
3311 | 3278 realwho = g_strdup_printf("%s/%s", buddy, jri->name); |
4450 | 3279 status = strdup_withhtml(jabber_lookup_away(gjc, realwho)); |
5236 | 3280 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _("Jabber ID"), realwho); |
3281 *ap++ = g_strdup_printf("<B>%s:</B> %s%s%s<BR>\n", _("Status"), jabber_get_state_string(jri->state), status ? ": " : "", status ? status : ""); | |
4450 | 3282 g_free(status); |
3311 | 3283 g_free(realwho); |
3284 resources = resources->next; | |
2956 | 3285 } |
3286 | |
3287 *ap = NULL; | |
3770 | 3288 |
3311 | 3289 g_free(buddy); |
2956 | 3290 |
3291 final= g_strjoinv(NULL, str_arr); | |
3292 g_strfreev(str_arr); | |
3293 | |
3311 | 3294 g_show_info_text(gc, who, 2, final, NULL); |
2956 | 3295 g_free(final); |
3770 | 3296 |
2956 | 3297 } |
3298 | |
5572 | 3299 static void jabber_get_cb_info(GaimConnection *gc, int cid, char *who) { |
2956 | 3300 struct jabber_chat *jc = NULL; |
3301 char *realwho; | |
3302 | |
3303 /* Find out which chat */ | |
3304 if(jabber_find_chat_by_convo_id(gc, cid, &jc) != 0) | |
3305 return; | |
3306 | |
3311 | 3307 realwho = g_strdup_printf("%s@%s/%s", jc->gjid->user, jc->gjid->server, who); |
2956 | 3308 |
3309 jabber_get_info(gc, realwho); | |
3310 g_free(realwho); | |
3311 } | |
3312 | |
5572 | 3313 static void jabber_get_cb_away_msg(GaimConnection *gc, int cid, char *who) { |
2956 | 3314 struct jabber_chat *jc = NULL; |
3315 char *realwho; | |
3316 | |
3317 /* Find out which chat */ | |
3318 if(jabber_find_chat_by_convo_id(gc, cid, &jc) != 0) | |
3319 return; | |
3320 | |
3311 | 3321 realwho = g_strdup_printf("%s@%s/%s", jc->gjid->user, jc->gjid->server, who); |
2956 | 3322 |
3323 jabber_get_away_msg(gc, realwho); | |
3324 g_free(realwho); | |
3325 | |
3326 } | |
3327 | |
4744 | 3328 static char *jabber_tooltip_text(struct buddy *b) |
3329 { | |
5135 | 3330 struct jabber_buddy_data *jbd = jabber_find_buddy(b->account->gc, b->name, FALSE); |
4745 | 3331 jab_res_info jri = jabber_find_resource(b->account->gc, b->name); |
5135 | 3332 char *ret = NULL; |
4745 | 3333 if(jri) { |
4777 | 3334 char *stripped = strip_html(jabber_lookup_away(GC_GJ(b->account->gc), |
4745 | 3335 b->name)); |
4777 | 3336 char *text = NULL; |
3337 if(stripped) | |
3338 text = g_markup_escape_text(stripped, strlen(stripped)); | |
5236 | 3339 ret = g_strdup_printf("<b>%s:</b> %s%s%s", |
3340 _("Status"), | |
4745 | 3341 jabber_get_state_string(jri->state), text ? ": " : "", |
3342 text ? text : ""); | |
3343 | |
4777 | 3344 if(stripped) { |
3345 g_free(stripped); | |
4745 | 3346 g_free(text); |
4777 | 3347 } |
5136 | 3348 } else if(jbd && !GAIM_BUDDY_IS_ONLINE(b) && |
3349 (jbd->subscription & JABBER_SUB_PENDING || | |
5135 | 3350 !(jbd->subscription & JABBER_SUB_TO))) { |
5236 | 3351 ret = g_strdup_printf("<b>%s:</b> %s", _("Status"), _("Not Authorized")); |
4745 | 3352 } |
5135 | 3353 return ret; |
4744 | 3354 } |
3355 | |
4732 | 3356 static char *jabber_status_text(struct buddy *b) |
3357 { | |
5135 | 3358 struct jabber_buddy_data *jbd = jabber_find_buddy(b->account->gc, b->name, FALSE); |
3359 char *ret = NULL; | |
4732 | 3360 if (b->uc & UC_UNAVAILABLE) { |
4777 | 3361 char *stripped = strip_html(jabber_lookup_away(GC_GJ(b->account->gc), |
4745 | 3362 b->name)); |
4777 | 3363 if(!stripped) { |
4745 | 3364 jab_res_info jri = jabber_find_resource(b->account->gc, b->name); |
3365 if(jri) | |
4777 | 3366 stripped = g_strdup(jabber_get_state_string(jri->state)); |
4745 | 3367 } |
4777 | 3368 ret = g_markup_escape_text(stripped, strlen(stripped)); |
3369 g_free(stripped); | |
5136 | 3370 } else if(jbd && !GAIM_BUDDY_IS_ONLINE(b) && |
3371 (jbd->subscription & JABBER_SUB_PENDING || | |
5135 | 3372 !(jbd->subscription & JABBER_SUB_TO))) { |
3373 ret = g_strdup(_("Not Authorized")); | |
4732 | 3374 } |
5135 | 3375 return ret; |
4732 | 3376 } |
3377 | |
5572 | 3378 static GList *jabber_buddy_menu(GaimConnection *gc, const char *who) { |
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
3379 GList *m = NULL; |
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
3380 struct proto_buddy_menu *pbm; |
4687 | 3381 struct buddy *b = gaim_find_buddy(gc->account, who); |
3311 | 3382 |
3383 if(b->uc == UC_ERROR) | |
3384 { | |
3385 pbm = g_new0(struct proto_buddy_menu, 1); | |
3386 pbm->label = _("View Error Msg"); | |
3387 pbm->callback = jabber_get_error_msg; | |
3388 pbm->gc = gc; | |
3389 m = g_list_append(m, pbm); | |
3390 } else { | |
3340 | 3391 gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc; |
3392 char *realwho = get_realwho(gjc, who, FALSE, NULL); | |
5135 | 3393 struct jabber_buddy_data *jbd = jabber_find_buddy(gc, realwho, FALSE); |
3340 | 3394 |
3395 g_free(realwho); | |
3396 | |
3311 | 3397 pbm = g_new0(struct proto_buddy_menu, 1); |
3398 pbm->label = _("Get Away Msg"); | |
3399 pbm->callback = jabber_get_away_msg; | |
3400 pbm->gc = gc; | |
3401 m = g_list_append(m, pbm); | |
3340 | 3402 |
3403 pbm = g_new0(struct proto_buddy_menu, 1); | |
3404 if(jbd && (jbd->invisible & JABBER_BUD_INVIS)) { | |
3405 pbm->label = _("Un-hide From"); | |
3406 pbm->callback = jabber_visible_to_buddy; | |
3407 } else { | |
3408 pbm->label = _("Temporarily Hide From"); | |
3409 pbm->callback = jabber_invisible_to_buddy; | |
3410 } | |
4916 | 3411 |
3412 pbm->gc = gc; | |
3413 m = g_list_append(m, pbm); | |
3414 pbm = g_new0(struct proto_buddy_menu, 1); | |
3415 pbm->label = _("Cancel Presence Notification"); | |
3416 pbm->callback = jabber_unsubscribe_buddy_from_us; | |
3340 | 3417 pbm->gc = gc; |
3418 m = g_list_append(m, pbm); | |
5136 | 3419 |
3420 if(jbd && !GAIM_BUDDY_IS_ONLINE(b) && | |
3421 !(jbd->subscription & JABBER_SUB_TO)) { | |
3422 pbm = g_new0(struct proto_buddy_menu, 1); | |
3423 pbm->label = _("Re-request authorization"); | |
3424 pbm->callback = jabber_add_buddy; | |
3425 pbm->gc = gc; | |
3426 m = g_list_append(m, pbm); | |
3427 } | |
3311 | 3428 } |
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
3429 |
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
3430 return m; |
2086 | 3431 } |
3432 | |
5572 | 3433 static GList *jabber_away_states(GaimConnection *gc) { |
2086 | 3434 GList *m = NULL; |
3435 | |
4982 | 3436 m = g_list_append(m, _("Online")); |
3437 m = g_list_append(m, _("Chatty")); | |
3438 m = g_list_append(m, _("Away")); | |
3439 m = g_list_append(m, _("Extended Away")); | |
3440 m = g_list_append(m, _("Do Not Disturb")); | |
3441 m = g_list_append(m, _("Invisible")); | |
4110 | 3442 m = g_list_append(m, GAIM_AWAY_CUSTOM); |
2086 | 3443 |
3444 return m; | |
3445 } | |
3446 | |
5572 | 3447 static void jabber_set_away(GaimConnection *gc, char *state, char *message) |
2086 | 3448 { |
3449 xmlnode x, y; | |
3450 struct jabber_data *jd = gc->proto_data; | |
2956 | 3451 gjconn gjc = jd->gjc; |
3311 | 3452 GSList *jcs; |
3453 struct jabber_chat *jc; | |
3454 char *chatname; | |
3340 | 3455 gboolean invisible = FALSE; |
2086 | 3456 |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3457 if (gc->away) { |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3458 g_free(gc->away); |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3459 gc->away = NULL; |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3460 } |
2086 | 3461 |
3462 x = xmlnode_new_tag("presence"); | |
3463 | |
3464 if (!strcmp(state, GAIM_AWAY_CUSTOM)) { | |
3465 /* oh goody. Gaim is telling us what to do. */ | |
3466 if (message) { | |
3467 /* Gaim wants us to be away */ | |
5174 | 3468 char *stripped; |
3469 | |
3470 /* Jabber supports XHTML in IMs, but not in away messages. */ | |
3471 html_to_xhtml(message, NULL, &stripped); | |
3472 | |
2086 | 3473 y = xmlnode_insert_tag(x, "show"); |
3474 xmlnode_insert_cdata(y, "away", -1); | |
3475 y = xmlnode_insert_tag(x, "status"); | |
5174 | 3476 xmlnode_insert_cdata(y, stripped, -1); |
3477 | |
3478 gc->away = g_strdup(stripped); | |
3479 g_free(stripped); | |
2086 | 3480 } else { |
3481 /* Gaim wants us to not be away */ | |
3482 /* but for Jabber, we can just send presence with no other information. */ | |
3483 } | |
3484 } else { | |
3485 /* state is one of our own strings. it won't be NULL. */ | |
4982 | 3486 if (!strcmp(state, _("Online"))) { |
2086 | 3487 /* once again, we don't have to put anything here */ |
4982 | 3488 } else if (!strcmp(state, _("Chatty"))) { |
2086 | 3489 y = xmlnode_insert_tag(x, "show"); |
3490 xmlnode_insert_cdata(y, "chat", -1); | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3491 gc->away = g_strdup(""); |
4982 | 3492 } else if (!strcmp(state, _("Away"))) { |
2086 | 3493 y = xmlnode_insert_tag(x, "show"); |
3494 xmlnode_insert_cdata(y, "away", -1); | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3495 gc->away = g_strdup(""); |
4982 | 3496 } else if (!strcmp(state, _("Extended Away"))) { |
2086 | 3497 y = xmlnode_insert_tag(x, "show"); |
3498 xmlnode_insert_cdata(y, "xa", -1); | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3499 gc->away = g_strdup(""); |
4982 | 3500 } else if (!strcmp(state, _("Do Not Disturb"))) { |
2086 | 3501 y = xmlnode_insert_tag(x, "show"); |
3502 xmlnode_insert_cdata(y, "dnd", -1); | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3503 gc->away = g_strdup(""); |
4982 | 3504 } else if (!strcmp(state, _("Invisible"))) { |
3340 | 3505 xmlnode_put_attrib(x, "type", "invisible"); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4110
diff
changeset
|
3506 gc->away = g_strdup(""); |
3340 | 3507 invisible = TRUE; |
2086 | 3508 } |
3509 } | |
3510 | |
3311 | 3511 gjab_send(gjc, x); /* Notify "individuals" */ |
3512 | |
3513 /* | |
3514 * As of jabberd-1.4.2: simply sending presence to the server doesn't result in | |
3515 * it being propagated to conference rooms. So we wade thru the list of chats, | |
3516 * sending our new presence status to each and every one. | |
3517 */ | |
3518 for(jcs = jd->chats; jcs; jcs = jcs->next) { | |
3519 jc = jcs->data; | |
3520 if(jc->state == JCS_ACTIVE) { | |
3521 xmlnode_put_attrib(x, "from", jc->gjid->full); | |
3522 chatname = g_strdup_printf("%s@%s", jc->gjid->user, jc->gjid->server); | |
3523 xmlnode_put_attrib(x, "to", chatname); | |
3524 gjab_send(gjc, x); | |
3525 g_free(chatname); | |
3526 } | |
3527 } | |
3528 | |
2086 | 3529 xmlnode_free(x); |
3340 | 3530 |
3531 invisible_to_all_buddies(gc, invisible); | |
2086 | 3532 } |
3533 | |
5572 | 3534 static void jabber_set_idle(GaimConnection *gc, int idle) { |
2086 | 3535 struct jabber_data *jd = (struct jabber_data *)gc->proto_data; |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3536 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3537 "jabber_set_idle: setting idle %i\n", idle); |
3770 | 3538 jd->idle = idle ? time(NULL) - idle : idle; |
2086 | 3539 } |
3540 | |
5572 | 3541 static void jabber_keepalive(GaimConnection *gc) { |
2086 | 3542 struct jabber_data *jd = (struct jabber_data *)gc->proto_data; |
4450 | 3543 gjab_send_raw(jd->gjc, JABBER_KEEPALIVE_STRING); |
2086 | 3544 } |
3545 | |
2956 | 3546 /*---------------------------------------*/ |
3547 /* Jabber "set info" (vCard) support */ | |
3548 /*---------------------------------------*/ | |
3549 | |
3550 /* | |
3551 * V-Card format: | |
3552 * | |
3553 * <vCard prodid='' version='' xmlns=''> | |
3554 * <FN></FN> | |
3555 * <N> | |
3556 * <FAMILY/> | |
3557 * <GIVEN/> | |
3558 * </N> | |
3559 * <NICKNAME/> | |
3560 * <URL/> | |
3561 * <ADR> | |
3562 * <STREET/> | |
3563 * <EXTADD/> | |
3564 * <LOCALITY/> | |
3565 * <REGION/> | |
3566 * <PCODE/> | |
3567 * <COUNTRY/> | |
3568 * </ADR> | |
3569 * <TEL/> | |
3570 * <EMAIL/> | |
3571 * <ORG> | |
3572 * <ORGNAME/> | |
3573 * <ORGUNIT/> | |
3574 * </ORG> | |
3575 * <TITLE/> | |
3576 * <ROLE/> | |
3577 * <DESC/> | |
3578 * <BDAY/> | |
3579 * </vCard> | |
3580 * | |
3581 * See also: | |
3582 * | |
3583 * http://docs.jabber.org/proto/html/vcard-temp.html | |
3584 * http://www.vcard-xml.org/dtd/vCard-XML-v2-20010520.dtd | |
3585 */ | |
3586 | |
3587 /* | |
3588 * Cross-reference user-friendly V-Card entry labels to vCard XML tags | |
3589 * and attributes. | |
3590 * | |
3591 * Order is (or should be) unimportant. For example: we have no way of | |
3592 * knowing in what order real data will arrive. | |
3593 * | |
3594 * Format: Label, Pre-set text, "visible" flag, "editable" flag, XML tag | |
3595 * name, XML tag's parent tag "path" (relative to vCard node). | |
3596 * | |
3597 * List is terminated by a NULL label pointer. | |
3598 * | |
3599 * Entries with no label text, but with XML tag and parent tag | |
3600 * entries, are used by V-Card XML construction routines to | |
3601 * "automagically" construct the appropriate XML node tree. | |
3602 * | |
3603 * Thoughts on future direction/expansion | |
3604 * | |
3605 * This is a "simple" vCard. | |
3606 * | |
3607 * It is possible for nodes other than the "vCard" node to have | |
3608 * attributes. Should that prove necessary/desirable, add an | |
3609 * "attributes" pointer to the vcard_template struct, create the | |
3610 * necessary tag_attr structs, and add 'em to the vcard_dflt_data | |
3611 * array. | |
3612 * | |
3613 * The above changes will (obviously) require changes to the vCard | |
3614 * construction routines. | |
3615 */ | |
3616 | |
3617 struct vcard_template { | |
3618 char *label; /* label text pointer */ | |
3619 char *text; /* entry text pointer */ | |
3620 int visible; /* should entry field be "visible?" */ | |
3621 int editable; /* should entry field be editable? */ | |
3622 char *tag; /* tag text */ | |
3623 char *ptag; /* parent tag "path" text */ | |
3624 char *url; /* vCard display format if URL */ | |
3625 } vcard_template_data[] = { | |
2975 | 3626 {N_("Full Name"), NULL, TRUE, TRUE, "FN", NULL, NULL}, |
3627 {N_("Family Name"), NULL, TRUE, TRUE, "FAMILY", "N", NULL}, | |
3628 {N_("Given Name"), NULL, TRUE, TRUE, "GIVEN", "N", NULL}, | |
3629 {N_("Nickname"), NULL, TRUE, TRUE, "NICKNAME", NULL, NULL}, | |
3630 {N_("URL"), NULL, TRUE, TRUE, "URL", NULL, "<A HREF=\"%s\">%s</A>"}, | |
3631 {N_("Street Address"), NULL, TRUE, TRUE, "STREET", "ADR", NULL}, | |
3632 {N_("Extended Address"), NULL, TRUE, TRUE, "EXTADD", "ADR", NULL}, | |
3633 {N_("Locality"), NULL, TRUE, TRUE, "LOCALITY", "ADR", NULL}, | |
3634 {N_("Region"), NULL, TRUE, TRUE, "REGION", "ADR", NULL}, | |
3635 {N_("Postal Code"), NULL, TRUE, TRUE, "PCODE", "ADR", NULL}, | |
3636 {N_("Country"), NULL, TRUE, TRUE, "COUNTRY", "ADR", NULL}, | |
3637 {N_("Telephone"), NULL, TRUE, TRUE, "TELEPHONE", NULL, NULL}, | |
3638 {N_("Email"), NULL, TRUE, TRUE, "EMAIL", NULL, "<A HREF=\"mailto:%s\">%s</A>"}, | |
3639 {N_("Organization Name"), NULL, TRUE, TRUE, "ORGNAME", "ORG", NULL}, | |
3640 {N_("Organization Unit"), NULL, TRUE, TRUE, "ORGUNIT", "ORG", NULL}, | |
3641 {N_("Title"), NULL, TRUE, TRUE, "TITLE", NULL, NULL}, | |
3642 {N_("Role"), NULL, TRUE, TRUE, "ROLE", NULL, NULL}, | |
3643 {N_("Birthday"), NULL, TRUE, TRUE, "BDAY", NULL, NULL}, | |
3644 {N_("Description"), NULL, TRUE, TRUE, "DESC", NULL, NULL}, | |
2956 | 3645 {"", NULL, TRUE, TRUE, "N", NULL, NULL}, |
3646 {"", NULL, TRUE, TRUE, "ADR", NULL, NULL}, | |
3647 {"", NULL, TRUE, TRUE, "ORG", NULL, NULL}, | |
3648 {NULL, NULL, 0, 0, NULL, NULL, NULL} | |
3649 }; | |
3650 | |
3651 /* | |
3652 * The "vCard" tag's attibute list... | |
3653 */ | |
3654 struct tag_attr { | |
3655 char *attr; | |
3656 char *value; | |
3657 } vcard_tag_attr_list[] = { | |
3658 {"prodid", "-//HandGen//NONSGML vGen v1.0//EN"}, | |
3659 {"version", "2.0", }, | |
3660 {"xmlns", "vcard-temp", }, | |
3661 {NULL, NULL}, | |
3662 }; | |
3663 | |
3664 | |
3665 /* | |
3666 * V-Card user instructions | |
3667 */ | |
3668 static char *multi_entry_instructions = | |
2975 | 3669 N_("All items below are optional. Enter only the information with which you feel comfortable"); |
3670 static char *entries_title = N_("User Identity"); | |
2956 | 3671 |
3672 /* | |
3673 * Used by routines to parse an XML-encoded string into an xmlnode tree | |
3674 */ | |
3675 typedef struct { | |
3676 XML_Parser parser; | |
3677 xmlnode current; | |
3678 } *xmlstr2xmlnode_parser, xmlstr2xmlnode_parser_struct; | |
3679 | |
3680 | |
3681 /* | |
3682 * Display a Jabber vCard | |
3683 */ | |
3684 static void jabber_handlevcard(gjconn gjc, xmlnode querynode, char *from) | |
3685 { | |
5572 | 3686 GaimConnection *gc = GJ_GC(gjc); |
2956 | 3687 char *cdata, *status; |
3688 struct vcard_template *vc_tp = vcard_template_data; | |
3689 | |
3690 /* space for all vCard elements + Jabber I.D. + "status" + NULL (list terminator) */ | |
3691 gchar **str_arr = (gchar **) g_new(gpointer, | |
3692 (sizeof(vcard_template_data)/sizeof(struct vcard_template)) + 3); | |
3693 gchar **ap = str_arr; | |
3694 gchar *buddy, *final; | |
3695 | |
4745 | 3696 jab_res_info jri; |
3697 | |
3311 | 3698 if((buddy = get_realwho(gjc, from, TRUE, NULL)) == NULL) { |
3699 g_strfreev(str_arr); | |
3700 return; | |
2956 | 3701 } |
3311 | 3702 |
4745 | 3703 jri = jabber_find_resource(GJ_GC(gjc), buddy); |
3704 | |
5236 | 3705 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _("Jabber ID"), buddy); |
2956 | 3706 |
3707 for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
3708 if(strcmp(vc_tp->tag, "DESC") == 0) | |
3709 continue; /* special handling later */ | |
3710 if(vc_tp->ptag == NULL) { | |
3711 cdata = xmlnode_get_tag_data(querynode, vc_tp->tag); | |
3712 } else { | |
3713 gchar *tag = g_strdup_printf("%s/%s", vc_tp->ptag, vc_tp->tag); | |
3714 cdata = xmlnode_get_tag_data(querynode, tag); | |
3715 g_free(tag); | |
3716 } | |
3717 if(cdata != NULL) { | |
3718 if(vc_tp->url == NULL) { | |
5236 | 3719 *ap++ = g_strdup_printf("<B>%s:</B> %s<BR>\n", _(vc_tp->label), cdata); |
2956 | 3720 } else { |
3721 gchar *fmt = g_strdup_printf("<B>%%s:</B> %s<BR>\n", vc_tp->url); | |
5236 | 3722 *ap++ = g_strdup_printf(fmt, _(vc_tp->label), cdata, cdata); |
2956 | 3723 g_free(fmt); |
3724 } | |
3725 } | |
3726 } | |
3727 | |
4745 | 3728 |
4450 | 3729 status = strdup_withhtml(jabber_lookup_away(gjc, buddy)); |
5236 | 3730 *ap++ = g_strdup_printf("<B>%s:</B> %s%s%s<BR>\n", |
3731 _("Status"), | |
4745 | 3732 jri ? jabber_get_state_string(jri->state) : "", |
3733 jri && status ? ": " : "", status ? status : ""); | |
4450 | 3734 g_free(status); |
2956 | 3735 |
3736 /* | |
3737 * "Description" handled as a special case: get a copy of the | |
3738 * string and HTML-ize. | |
3739 */ | |
3740 if((cdata = xmlnode_get_tag_data(querynode, "DESC")) != NULL) { | |
3741 gchar *tmp = g_strdup_printf("<HR>%s<BR>", cdata); | |
3742 *ap++ = strdup_withhtml(tmp); | |
3743 g_free(tmp); | |
3744 } | |
3745 | |
3746 *ap = NULL; | |
3747 | |
3748 final= g_strjoinv(NULL, str_arr); | |
3749 g_strfreev(str_arr); | |
3750 | |
3751 g_show_info_text(gc, buddy, 2, final, NULL); | |
3752 g_free(buddy); | |
3753 g_free(final); | |
3754 } | |
3755 | |
3756 /* | |
3757 * Used by XML_Parse on parsing CDATA | |
3758 */ | |
3759 static void xmlstr2xmlnode_charData(void *userdata, const char *s, int slen) | |
3760 { | |
3761 xmlstr2xmlnode_parser xmlp = (xmlstr2xmlnode_parser) userdata; | |
3762 | |
3763 if (xmlp->current) | |
3764 xmlnode_insert_cdata(xmlp->current, s, slen); | |
3765 } | |
3766 | |
3767 /* | |
3768 * Used by XML_Parse to start or append to an xmlnode | |
3769 */ | |
3770 static void xmlstr2xmlnode_startElement(void *userdata, const char *name, const char **attribs) | |
3771 { | |
3772 xmlnode x; | |
3773 xmlstr2xmlnode_parser xmlp = (xmlstr2xmlnode_parser) userdata; | |
3774 | |
3775 if (xmlp->current) { | |
3776 /* Append the node to the current one */ | |
3777 x = xmlnode_insert_tag(xmlp->current, name); | |
3778 xmlnode_put_expat_attribs(x, attribs); | |
3779 | |
3780 xmlp->current = x; | |
3781 } else { | |
3782 x = xmlnode_new_tag(name); | |
3783 xmlnode_put_expat_attribs(x, attribs); | |
3784 xmlp->current = x; | |
3785 } | |
3786 } | |
3787 | |
3788 /* | |
3789 * Used by XML_Parse to end an xmlnode | |
3790 */ | |
3791 static void xmlstr2xmlnode_endElement(void *userdata, const char *name) | |
3792 { | |
3793 xmlstr2xmlnode_parser xmlp = (xmlstr2xmlnode_parser) userdata; | |
3794 xmlnode x; | |
3795 | |
3796 if (xmlp->current != NULL && (x = xmlnode_get_parent(xmlp->current)) != NULL) { | |
3797 xmlp->current = x; | |
3798 } | |
3799 } | |
3800 | |
3801 /* | |
3802 * Parse an XML-encoded string into an xmlnode tree | |
3803 * | |
3804 * Caller is responsible for freeing the returned xmlnode | |
3805 */ | |
3806 static xmlnode xmlstr2xmlnode(char *xmlstring) | |
3807 { | |
3808 xmlstr2xmlnode_parser my_parser = g_new(xmlstr2xmlnode_parser_struct, 1); | |
3809 xmlnode x = NULL; | |
3810 | |
3811 my_parser->parser = XML_ParserCreate(NULL); | |
3812 my_parser->current = NULL; | |
3813 | |
3814 XML_SetUserData(my_parser->parser, (void *)my_parser); | |
3815 XML_SetElementHandler(my_parser->parser, xmlstr2xmlnode_startElement, xmlstr2xmlnode_endElement); | |
3816 XML_SetCharacterDataHandler(my_parser->parser, xmlstr2xmlnode_charData); | |
3817 XML_Parse(my_parser->parser, xmlstring, strlen(xmlstring), 0); | |
3818 | |
3819 x = my_parser->current; | |
3820 | |
3821 XML_ParserFree(my_parser->parser); | |
3822 g_free(my_parser); | |
3823 | |
3824 return(x); | |
3825 } | |
3826 | |
3827 /* | |
3828 * Insert a tag node into an xmlnode tree, recursively inserting parent tag | |
3829 * nodes as necessary | |
3830 * | |
3831 * Returns pointer to inserted node | |
3832 * | |
3833 * Note to hackers: this code is designed to be re-entrant (it's recursive--it | |
3834 * calls itself), so don't put any "static"s in here! | |
3835 */ | |
3836 static xmlnode insert_tag_to_parent_tag(xmlnode start, const char *parent_tag, const char *new_tag) | |
3837 { | |
3838 xmlnode x = NULL; | |
3839 | |
3840 /* | |
3841 * If the parent tag wasn't specified, see if we can get it | |
3842 * from the vCard template struct. | |
3843 */ | |
3844 if(parent_tag == NULL) { | |
3845 struct vcard_template *vc_tp = vcard_template_data; | |
3846 | |
3847 while(vc_tp->label != NULL) { | |
3848 if(strcmp(vc_tp->tag, new_tag) == 0) { | |
3849 parent_tag = vc_tp->ptag; | |
3850 break; | |
3851 } | |
3852 ++vc_tp; | |
3853 } | |
3854 } | |
3855 | |
3856 /* | |
3857 * If we have a parent tag... | |
3858 */ | |
3859 if(parent_tag != NULL ) { | |
3860 /* | |
3861 * Try to get the parent node for a tag | |
3862 */ | |
3863 if((x = xmlnode_get_tag(start, parent_tag)) == NULL) { | |
3864 /* | |
3865 * Descend? | |
3866 */ | |
3867 char *grand_parent = strcpy(g_malloc(strlen(parent_tag) + 1), parent_tag); | |
3868 char *parent; | |
3869 | |
3870 if((parent = strrchr(grand_parent, '/')) != NULL) { | |
3871 *(parent++) = '\0'; | |
3872 x = insert_tag_to_parent_tag(start, grand_parent, parent); | |
3873 } else { | |
3874 x = xmlnode_insert_tag(start, grand_parent); | |
3875 } | |
3876 g_free(grand_parent); | |
3877 } else { | |
3878 /* | |
3879 * We found *something* to be the parent node. | |
3880 * Note: may be the "root" node! | |
3881 */ | |
3882 xmlnode y; | |
3883 if((y = xmlnode_get_tag(x, new_tag)) != NULL) { | |
3884 return(y); | |
3885 } | |
3886 } | |
3887 } | |
3888 | |
3889 /* | |
3890 * insert the new tag into its parent node | |
3891 */ | |
3892 return(xmlnode_insert_tag((x == NULL? start : x), new_tag)); | |
3893 } | |
3894 | |
3895 /* | |
3896 * Find the tag name for a label | |
3897 * | |
3898 * Returns NULL on not found | |
3899 */ | |
3900 static char *tag_for_label(const char *label) | |
3901 { | |
3902 struct vcard_template *vc_tp = vcard_template_data; | |
3903 char *p = NULL; | |
3904 | |
3905 for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
3906 if(strcmp(label, vc_tp->label) == 0) { | |
3907 p = vc_tp->tag; | |
3908 break; | |
3909 } | |
3910 } | |
3911 | |
3912 return(p); | |
3913 } | |
3914 | |
3915 /* | |
3916 * Send vCard info to Jabber server | |
3917 */ | |
5954 | 3918 static void jabber_set_info(GaimConnection *gc, const char *info) |
2956 | 3919 { |
3920 xmlnode x, vc_node; | |
3921 char *id; | |
3922 struct jabber_data *jd = gc->proto_data; | |
3923 gjconn gjc = jd->gjc; | |
5954 | 3924 gchar *info2; |
2956 | 3925 |
3926 x = xmlnode_new_tag("iq"); | |
3311 | 3927 xmlnode_put_attrib(x, "type", "set"); |
2956 | 3928 |
3929 id = gjab_getid(gjc); | |
3770 | 3930 |
2956 | 3931 xmlnode_put_attrib(x, "id", id); |
3932 | |
3933 /* | |
3934 * Send only if there's actually any *information* to send | |
3935 */ | |
5954 | 3936 info2 = g_strdup(info); |
3937 vc_node = xmlstr2xmlnode(info2); | |
4874 | 3938 |
3939 if(vc_node) { | |
3940 if (xmlnode_get_name(vc_node) && | |
3941 !g_ascii_strncasecmp(xmlnode_get_name(vc_node), "vcard", 5)) { | |
3942 xmlnode_insert_tag_node(x, vc_node); | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3943 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
3944 "jabber: vCard packet: %s\n", xmlnode2str(x)); |
4874 | 3945 gjab_send(gjc, x); |
3946 } | |
3947 xmlnode_free(vc_node); | |
2956 | 3948 } |
3949 | |
3950 xmlnode_free(x); | |
5954 | 3951 g_free(info2); |
2956 | 3952 } |
3953 | |
3954 /* | |
3955 * This is the callback from the "ok clicked" for "set vCard" | |
3956 * | |
3957 * Formats GSList data into XML-encoded string and returns a pointer | |
3958 * to said string. | |
3959 * | |
3960 * g_free()'ing the returned string space is the responsibility of | |
3961 * the caller. | |
3962 */ | |
3963 static gchar *jabber_format_info(MultiEntryDlg *b) | |
3964 { | |
3965 xmlnode vc_node; | |
3966 GSList *list; | |
3967 MultiEntryData *med; | |
3968 MultiTextData *mtd; | |
3969 char *p; | |
3970 | |
3971 struct tag_attr *tag_attr; | |
3972 | |
3973 vc_node = xmlnode_new_tag("vCard"); | |
3974 | |
3975 for(tag_attr = vcard_tag_attr_list; tag_attr->attr != NULL; ++tag_attr) | |
3976 xmlnode_put_attrib(vc_node, tag_attr->attr, tag_attr->value); | |
3977 | |
3978 for(list = b->multi_entry_items; list != NULL; list = list->next) { | |
3979 med = (MultiEntryData *) list->data; | |
3980 if(med->label != NULL && med->text != NULL && (med->text)[0] != '\0') { | |
3981 if((p = tag_for_label(med->label)) != NULL) { | |
3982 xmlnode xp; | |
3983 if((xp = insert_tag_to_parent_tag(vc_node, NULL, p)) != NULL) { | |
3984 xmlnode_insert_cdata(xp, med->text, -1); | |
3985 } | |
3986 } | |
3987 } | |
3988 } | |
3989 | |
3990 for(list = b->multi_text_items; list != NULL; list = list->next) { | |
3991 mtd = (MultiTextData *) list->data; | |
3992 if(mtd->label != NULL && mtd->text != NULL && (mtd->text)[0] != '\0') { | |
3993 if((p = tag_for_label(mtd->label)) != NULL) { | |
3994 xmlnode xp; | |
3995 if((xp = insert_tag_to_parent_tag(vc_node, NULL, p)) != NULL) { | |
3996 xmlnode_insert_cdata(xp, mtd->text, -1); | |
3997 } | |
3998 } | |
3999 } | |
4000 } | |
4001 | |
4002 | |
4003 p = g_strdup(xmlnode2str(vc_node)); | |
4004 xmlnode_free(vc_node); | |
4005 | |
4006 return(p); | |
4007 } | |
4008 | |
4009 /* | |
4010 * This gets executed by the proto action | |
4011 * | |
4012 * Creates a new MultiEntryDlg struct, gets the XML-formatted user_info | |
4013 * string (if any) into GSLists for the (multi-entry) edit dialog and | |
4014 * calls the set_vcard dialog. | |
4015 */ | |
5572 | 4016 static void jabber_setup_set_info(GaimConnection *gc) |
2956 | 4017 { |
4018 MultiEntryData *data; | |
4019 const struct vcard_template *vc_tp; | |
4020 char *user_info; | |
4021 MultiEntryDlg *b = multi_entry_dialog_new(); | |
4022 char *cdata; | |
4023 xmlnode x_vc_data = NULL; | |
5572 | 4024 GaimAccount *tmp = gc->account; |
4491 | 4025 b->account = tmp; |
2956 | 4026 |
4027 | |
4028 /* | |
4029 * Get existing, XML-formatted, user info | |
4030 */ | |
4031 if((user_info = g_malloc(strlen(tmp->user_info) + 1)) != NULL) { | |
4032 strcpy(user_info, tmp->user_info); | |
4033 x_vc_data = xmlstr2xmlnode(user_info); | |
4034 } | |
4035 | |
4036 /* | |
4037 * Set up GSLists for edit with labels from "template," data from user info | |
4038 */ | |
4039 for(vc_tp = vcard_template_data; vc_tp->label != NULL; ++vc_tp) { | |
4040 if((vc_tp->label)[0] == '\0') | |
4041 continue; | |
4042 if(vc_tp->ptag == NULL) { | |
4043 cdata = xmlnode_get_tag_data(x_vc_data, vc_tp->tag); | |
4044 } else { | |
4045 gchar *tag = g_strdup_printf("%s/%s", vc_tp->ptag, vc_tp->tag); | |
4046 cdata = xmlnode_get_tag_data(x_vc_data, tag); | |
4047 g_free(tag); | |
4048 } | |
4049 if(strcmp(vc_tp->tag, "DESC") == 0) { | |
4050 multi_text_list_update(&(b->multi_text_items), | |
4051 vc_tp->label, cdata, TRUE); | |
4052 } else { | |
4053 data = multi_entry_list_update(&(b->multi_entry_items), | |
4054 vc_tp->label, cdata, TRUE); | |
4055 data->visible = vc_tp->visible; | |
4056 data->editable = vc_tp->editable; | |
4057 } | |
4058 } | |
4059 | |
4060 | |
4061 if(x_vc_data != NULL) { | |
4062 xmlnode_free(x_vc_data); | |
4063 } else { | |
4064 /* | |
4065 * Early Beta versions had a different user_info storage format--let's | |
4066 * see if that works. | |
4067 * | |
4068 * This goes away RSN. | |
4069 */ | |
4070 const char *record_separator = "<BR>"; | |
4071 const char *field_separator = ": "; | |
4072 gchar **str_list, **str_list_ptr, **str_list2; | |
4073 | |
4074 if((str_list = g_strsplit(user_info, record_separator, 0)) != NULL) { | |
4075 for(str_list_ptr = str_list; *str_list_ptr != NULL; ++str_list_ptr) { | |
4076 str_list2 = g_strsplit(*str_list_ptr, field_separator, 2); | |
4077 if(str_list2[0] != NULL && str_list2[1] != NULL) { | |
4078 g_strstrip(str_list2[0]); | |
4079 g_strstrip(str_list2[1]); | |
4080 /* this is ugly--so far */ | |
4081 if(strcmp(str_list2[0], "Description") == 0) { | |
4082 multi_text_list_update(&(b->multi_text_items), | |
4083 str_list2[0], str_list2[1], FALSE); | |
4084 } else { | |
4085 multi_entry_list_update(&(b->multi_entry_items), | |
4086 str_list2[0], str_list2[1], FALSE); | |
4087 } | |
4088 } | |
4089 g_strfreev(str_list2); | |
4090 } | |
4091 g_strfreev(str_list); | |
4092 } | |
4093 } | |
4094 | |
4095 if(user_info != NULL) { | |
4096 g_free(user_info); | |
4097 } | |
4098 | |
2975 | 4099 b->title = _("Gaim - Edit Jabber vCard"); |
4074 | 4100 b->role = "set_info"; |
5236 | 4101 b->instructions->text = g_strdup(_(multi_entry_instructions)); |
4102 b->entries_title = g_strdup(_(entries_title)); | |
2956 | 4103 |
4104 b->custom = (void *) jabber_format_info; | |
4105 | |
4106 show_set_vcard(b); | |
4107 } | |
4108 | |
4109 /*---------------------------------------*/ | |
4110 /* End Jabber "set info" (vCard) support */ | |
4111 /*---------------------------------------*/ | |
4112 | |
4113 /*----------------------------------------*/ | |
4114 /* Jabber "user registration" support */ | |
4115 /*----------------------------------------*/ | |
4116 | |
4117 /* | |
4118 * Three of the following four functions duplicate much of what | |
4119 * exists elsewhere: | |
4120 * | |
4121 * jabber_handleregresp() | |
4122 * gjab_reqreg() | |
4123 * jabber_handle_registration_state() | |
4124 * | |
4125 * It may be that an additional flag could be added to one of | |
4126 * the "local" structs and the duplicated code modified to | |
4127 * account for it--thus eliminating the duplication. Then again: | |
4128 * doing it the way it is may be much cleaner. | |
4129 * | |
4130 * TBD: Code to support requesting additional information server | |
4131 * wants at registration--incl. dialog. | |
4132 */ | |
4133 | |
4134 /* | |
4135 * Like jabber_handlepacket(), only different | |
4136 */ | |
4137 static void jabber_handleregresp(gjconn gjc, jpacket p) | |
4138 { | |
4139 if (jpacket_subtype(p) == JPACKET__RESULT) { | |
4140 xmlnode querynode; | |
4141 | |
4142 if((querynode = xmlnode_get_tag(p->x, "query")) != NULL) { | |
4143 char *xmlns; | |
4144 | |
4145 /* we damn well *better* have this! */ | |
4146 if((xmlns = xmlnode_get_attrib(querynode, "xmlns")) != NULL && | |
4147 strcmp(xmlns, NS_REGISTER) == 0) { | |
4148 | |
4149 char *tag; | |
4150 xmlnode child = xmlnode_get_firstchild(querynode); | |
4151 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4152 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4153 "got registration requirments response!\n"); |
2956 | 4154 |
4155 while(child != NULL) { | |
4156 if((tag = xmlnode_get_name(child)) != NULL) { | |
4157 char *data; | |
4158 | |
4159 fprintf(stderr, "DBG: got node: \"%s\"\n", tag); | |
4160 fflush(stderr); | |
4161 | |
4162 if((data = xmlnode_get_data(child)) != NULL) { | |
4163 fprintf(stderr, "DBG: got data: \"%s\"\n", data); | |
4164 fflush(stderr); | |
4165 } | |
4166 } | |
4167 child = xmlnode_get_nextsibling(child); | |
4168 } | |
4169 } | |
4170 } else { | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4171 gaim_debug(GAIM_DEBUG_INFO, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4172 "registration successful!\n"); |
2956 | 4173 |
5572 | 4174 gaim_connection_notice(GJ_GC(gjc), _("Server Registration successful!")); |
5578
847ad796326d
[gaim-migrate @ 5982]
Christian Hammond <chipx86@chipx86.com>
parents:
5572
diff
changeset
|
4175 gaim_connection_destroy(GJ_GC(gjc)); |
2956 | 4176 } |
4177 | |
4178 } else { | |
4179 xmlnode xerr; | |
4180 char *errmsg = NULL; | |
4181 int errcode = 0; | |
4182 struct jabber_data *jd = GJ_GC(gjc)->proto_data; | |
4183 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4184 gaim_debug(GAIM_DEBUG_ERROR, "jabber", "registration failed\n"); |
2956 | 4185 xerr = xmlnode_get_tag(p->x, "error"); |
4186 if (xerr) { | |
4187 char msg[BUF_LONG]; | |
4188 errmsg = xmlnode_get_data(xerr); | |
4189 if (xmlnode_get_attrib(xerr, "code")) { | |
4190 errcode = atoi(xmlnode_get_attrib(xerr, "code")); | |
4191 g_snprintf(msg, sizeof(msg), "Error %d: %s", errcode, errmsg); | |
4192 } else | |
4193 g_snprintf(msg, sizeof(msg), "%s", errmsg); | |
5572 | 4194 gaim_connection_error(GJ_GC(gjc), msg); |
2956 | 4195 } else { |
5572 | 4196 gaim_connection_error(GJ_GC(gjc), _("Unknown registration error")); |
2956 | 4197 } |
4198 | |
4199 jd->die = TRUE; | |
4200 } | |
4201 } | |
4202 | |
4203 /* | |
4204 * Like gjab_reqauth(), only different | |
4205 */ | |
4206 static void gjab_reqreg(gjconn gjc) | |
4207 { | |
4208 xmlnode x, y, z; | |
4209 char *user; | |
4210 | |
4211 if (!gjc) | |
4212 return; | |
4213 | |
4214 x = jutil_iqnew(JPACKET__SET, NS_REGISTER); | |
4215 y = xmlnode_get_tag(x, "query"); | |
4216 | |
4217 user = gjc->user->user; | |
4218 | |
4219 if (user) { | |
4220 z = xmlnode_insert_tag(y, "username"); | |
4221 xmlnode_insert_cdata(z, user, -1); | |
4222 } | |
4223 z = xmlnode_insert_tag(y, "password"); | |
4224 xmlnode_insert_cdata(z, gjc->pass, -1); | |
4225 | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4226 gaim_debug(GAIM_DEBUG_MISC, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4227 "jabber: registration packet: %s\n", xmlnode2str(x)); |
2956 | 4228 gjab_send(gjc, x); |
4229 xmlnode_free(x); | |
4230 } | |
4231 | |
4232 /* | |
4233 * Like jabber_handlestate(), only different | |
4234 */ | |
4235 static void jabber_handle_registration_state(gjconn gjc, int state) | |
4236 { | |
4237 switch (state) { | |
4238 case JCONN_STATE_OFF: | |
3074 | 4239 if(gjc->was_connected) { |
5572 | 4240 gaim_connection_error(GJ_GC(gjc), _("Connection lost")); |
3074 | 4241 } else { |
5572 | 4242 gaim_connection_error(GJ_GC(gjc), _("Unable to connect")); |
3074 | 4243 } |
2956 | 4244 break; |
4245 case JCONN_STATE_CONNECTED: | |
3074 | 4246 gjc->was_connected = 1; |
2956 | 4247 /* |
4248 * TBD? | |
2975 | 4249 set_login_progress(GJ_GC(gjc), 2, _("Connected")); |
2956 | 4250 */ |
4251 break; | |
4252 case JCONN_STATE_ON: | |
4253 /* | |
4254 * TBD? | |
2975 | 4255 set_login_progress(GJ_GC(gjc), 3, _("Requesting Authentication Method")); |
2956 | 4256 */ |
4257 gjab_reqreg(gjc); | |
4258 /* | |
4259 * TBD: A work-in-progress | |
4260 gjab_reqregreqs(gjc); | |
4261 */ | |
4262 break; | |
4263 default: | |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4264 gaim_debug(GAIM_DEBUG_MISC, "jabber", "state change: %d\n", state); |
2956 | 4265 } |
4266 return; | |
4267 } | |
4268 | |
4269 /* | |
4270 * Like jabber_login(), only different | |
4271 */ | |
5572 | 4272 void jabber_register_user(GaimAccount *account) |
2956 | 4273 { |
5572 | 4274 GaimConnection *gc = gaim_account_get_connection(account); |
2956 | 4275 struct jabber_data *jd = gc->proto_data = g_new0(struct jabber_data, 1); |
4917 | 4276 char *loginname = create_valid_jid(account->username, DEFAULT_SERVER, "Gaim"); |
2956 | 4277 |
4278 /* | |
4279 * These do nothing during registration | |
4280 */ | |
3311 | 4281 jd->buddies = NULL; |
2956 | 4282 jd->chats = NULL; |
4283 | |
4491 | 4284 if ((jd->gjc = gjab_new(loginname, account->password, gc)) == NULL) { |
2956 | 4285 g_free(loginname); |
5223
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4286 gaim_debug(GAIM_DEBUG_ERROR, "jabber", |
e2e5bc3ca705
[gaim-migrate @ 5593]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
4287 "unable to connect (jab_new failed)\n"); |
5572 | 4288 gaim_connection_error(gc, _("Unable to connect")); |
2956 | 4289 } else { |
4290 gjab_state_handler(jd->gjc, jabber_handle_registration_state); | |
4291 gjab_packet_handler(jd->gjc, jabber_handleregresp); | |
4292 jd->gjc->queries = NULL; | |
4293 gjab_start(jd->gjc); | |
4294 } | |
4295 | |
4296 g_free(loginname); | |
4297 } | |
4298 | |
4299 /*----------------------------------------*/ | |
4300 /* End Jabber "user registration" support */ | |
4301 /*----------------------------------------*/ | |
4302 | |
5572 | 4303 static GList *jabber_actions(GaimConnection *gc) |
2956 | 4304 { |
4305 GList *m = NULL; | |
4333 | 4306 struct proto_actions_menu *pam; |
4307 | |
4308 pam = g_new0(struct proto_actions_menu, 1); | |
4309 pam->label = _("Set User Info"); | |
4310 pam->callback = jabber_setup_set_info; | |
4311 pam->gc = gc; | |
4312 m = g_list_append(m, pam); | |
4313 | |
2956 | 4314 /* |
4333 | 4315 pam = g_new0(struct proto_actions_menu, 1); |
4316 pam->label = _("Set Dir Info"); | |
4317 pam->callback = show_set_dir; | |
4318 pam->gc = gc; | |
4319 m = g_list_append(m, pam); | |
3257 | 4320 */ |
4333 | 4321 |
4322 pam = g_new0(struct proto_actions_menu, 1); | |
4323 pam->label = _("Change Password"); | |
4324 pam->callback = show_change_passwd; | |
4325 pam->gc = gc; | |
4326 m = g_list_append(m, pam); | |
2956 | 4327 |
4328 return m; | |
4329 } | |
4330 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4331 static GaimPluginProtocolInfo prpl_info = |
2086 | 4332 { |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4333 GAIM_PROTO_JABBER, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4334 OPT_PROTO_UNIQUE_CHATNAME | OPT_PROTO_CHAT_TOPIC, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4335 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4336 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4337 jabber_list_icon, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4338 jabber_list_emblems, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4339 jabber_status_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4340 jabber_tooltip_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4341 jabber_away_states, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4342 jabber_actions, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4343 jabber_buddy_menu, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4344 jabber_chat_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4345 jabber_login, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4346 jabber_close, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4347 jabber_send_im, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4348 jabber_set_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4349 jabber_send_typing, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4350 jabber_get_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4351 jabber_set_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4352 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4353 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4354 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4355 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4356 jabber_set_idle, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4357 jabber_change_passwd, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4358 jabber_add_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4359 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4360 jabber_remove_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 NULL, |
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 jabber_join_chat, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4369 jabber_chat_invite, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4370 jabber_chat_leave, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4371 jabber_chat_whisper, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4372 jabber_chat_send, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4373 jabber_keepalive, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4374 jabber_register_user, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4375 jabber_get_cb_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4376 jabber_get_cb_away_msg, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4377 jabber_alias_buddy, |
5957 | 4378 jabber_group_change, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4379 jabber_rename_group, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4380 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4381 jabber_convo_closed, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4382 jabber_normalize |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4383 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4384 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4385 static GaimPluginInfo info = |
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 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4388 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4389 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4390 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4391 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4392 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4393 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4394 "prpl-jabber", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4395 "Jabber", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4396 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4397 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4398 N_("Jabber Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4399 /** description */ |
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 NULL, /**< author */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4402 WEBSITE, /**< homepage */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4403 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4404 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4405 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4406 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4407 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4408 NULL, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4409 &prpl_info /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4410 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4411 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4412 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
4413 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4414 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4415 GaimAccountUserSplit *split; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4416 GaimAccountOption *option; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4417 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4418 /* Splits */ |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4419 split = gaim_account_user_split_new(_("Server"), "jabber.org", '@'); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4420 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
|
4421 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4422 split = gaim_account_user_split_new(_("Resource"), "Gaim", '/'); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4423 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
|
4424 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4425 /* Account Options */ |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4426 option = gaim_account_option_int_new(_("Port"), "port", DEFAULT_PORT); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4427 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4428 option); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4429 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
4430 option = gaim_account_option_string_new(_("Connect server"), |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4431 "connect_server", NULL); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4432 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
4433 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4434 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
4435 my_protocol = plugin; |
2086 | 4436 } |
4437 | |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
4438 GAIM_INIT_PLUGIN(jabber, init_plugin, info); |