Mercurial > pidgin
annotate src/protocols/jabber/jabber.c @ 8042:7fa6ddec6e30
[gaim-migrate @ 8726]
fix a segfault I ran in to
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Fri, 09 Jan 2004 16:58:33 +0000 |
parents | 7bae464195c4 |
children | 9a6df4d567e0 |
rev | line source |
---|---|
2086 | 1 /* |
7014 | 2 * gaim - Jabber Protocol Plugin |
2086 | 3 * |
7014 | 4 * Copyright (C) 2003, Nathan Walp <faceprint@faceprint.com> |
2086 | 5 * |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
7014 | 10 * |
2086 | 11 * This program is distributed in the hope that it will be useful, |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
21 #include "internal.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
22 |
7014 | 23 #include "account.h" |
24 #include "accountopt.h" | |
25 #include "debug.h" | |
26 #include "message.h" | |
27 #include "multi.h" | |
7072 | 28 #include "notify.h" |
7014 | 29 #include "prpl.h" |
7072 | 30 #include "request.h" |
7014 | 31 #include "server.h" |
7095
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
32 #include "util.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
33 |
7014 | 34 #include "auth.h" |
35 #include "buddy.h" | |
36 #include "chat.h" | |
37 #include "iq.h" | |
38 #include "jutil.h" | |
39 #include "message.h" | |
40 #include "parser.h" | |
41 #include "presence.h" | |
42 #include "jabber.h" | |
43 #include "roster.h" | |
7923 | 44 #include "xdata.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
45 |
7014 | 46 #define JABBER_CONNECT_STEPS (js->gsc ? 8 : 5) |
2086 | 47 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
48 static GaimPlugin *my_protocol = NULL; |
4249 | 49 |
7014 | 50 static void jabber_stream_init(JabberStream *js) |
51 { | |
52 char *open_stream; | |
3340 | 53 |
7014 | 54 open_stream = g_strdup_printf("<stream:stream to='%s' " |
55 "xmlns='jabber:client' " | |
7395 | 56 "xmlns:stream='http://etherx.jabber.org/streams' " |
57 "version='1.0'>", | |
7291 | 58 js->user->domain); |
3311 | 59 |
7642 | 60 jabber_send_raw(js, open_stream, -1); |
2086 | 61 |
7014 | 62 g_free(open_stream); |
2086 | 63 } |
64 | |
7395 | 65 static void |
66 jabber_session_initialized_cb(JabberStream *js, xmlnode *packet, gpointer data) | |
3311 | 67 { |
7014 | 68 const char *type = xmlnode_get_attrib(packet, "type"); |
69 if(type && !strcmp(type, "result")) { | |
70 jabber_stream_set_state(js, JABBER_STREAM_CONNECTED); | |
71 } else { | |
72 gaim_connection_error(js->gc, _("Error initializing session")); | |
3311 | 73 } |
74 } | |
75 | |
7014 | 76 static void jabber_session_init(JabberStream *js) |
3311 | 77 { |
7014 | 78 JabberIq *iq = jabber_iq_new(js, JABBER_IQ_SET); |
79 xmlnode *session; | |
3311 | 80 |
7395 | 81 jabber_iq_set_callback(iq, jabber_session_initialized_cb, NULL); |
3311 | 82 |
7014 | 83 session = xmlnode_new_child(iq->node, "session"); |
84 xmlnode_set_attrib(session, "xmlns", "urn:ietf:params:xml:ns:xmpp-session"); | |
3311 | 85 |
7014 | 86 jabber_iq_send(iq); |
3311 | 87 } |
88 | |
7395 | 89 static void jabber_bind_result_cb(JabberStream *js, xmlnode *packet, |
90 gpointer data) | |
91 { | |
7923 | 92 /* XXX: check for errors, re-set our own js->user JID */ |
7395 | 93 |
94 jabber_session_init(js); | |
95 } | |
96 | |
97 static void jabber_stream_features_parse(JabberStream *js, xmlnode *packet) | |
98 { | |
99 if(xmlnode_get_child(packet, "mechanisms")) { | |
100 jabber_auth_start(js, packet); | |
101 } else if(xmlnode_get_child(packet, "bind")) { | |
102 xmlnode *bind, *resource; | |
103 JabberIq *iq = jabber_iq_new(js, JABBER_IQ_SET); | |
104 bind = xmlnode_new_child(iq->node, "bind"); | |
105 xmlnode_set_attrib(bind, "xmlns", "urn:ietf:params:xml:ns:xmpp-bind"); | |
106 resource = xmlnode_new_child(bind, "resource"); | |
107 xmlnode_insert_data(resource, js->user->resource, -1); | |
108 | |
109 jabber_iq_set_callback(iq, jabber_bind_result_cb, NULL); | |
110 | |
111 jabber_iq_send(iq); | |
112 } | |
113 } | |
114 | |
7014 | 115 static void jabber_stream_handle_error(JabberStream *js, xmlnode *packet) |
3311 | 116 { |
7014 | 117 xmlnode *textnode; |
118 char *error_text = NULL; | |
119 const char *text; | |
120 char *buf; | |
3311 | 121 |
7014 | 122 if(xmlnode_get_child(packet, "bad-format")) { |
123 text = _("Bad Format"); | |
124 } else if(xmlnode_get_child(packet, "bad-namespace-prefix")) { | |
125 text = _("Bad Namespace Prefix"); | |
126 } else if(xmlnode_get_child(packet, "conflict")) { | |
127 js->gc->wants_to_die = TRUE; | |
128 text = _("Resource Conflict"); | |
129 } else if(xmlnode_get_child(packet, "connection-timeout")) { | |
130 text = _("Connection Timeout"); | |
131 } else if(xmlnode_get_child(packet, "host-gone")) { | |
132 text = _("Host Gone"); | |
133 } else if(xmlnode_get_child(packet, "host-unknown")) { | |
134 text = _("Host Unknown"); | |
135 } else if(xmlnode_get_child(packet, "improper-addressing")) { | |
136 text = _("Improper Addressing"); | |
137 } else if(xmlnode_get_child(packet, "internal-server-error")) { | |
138 text = _("Internal Server Error"); | |
139 } else if(xmlnode_get_child(packet, "invalid-id")) { | |
140 text = _("Invalid ID"); | |
141 } else if(xmlnode_get_child(packet, "invalid-namespace")) { | |
142 text = _("Invalid Namespace"); | |
143 } else if(xmlnode_get_child(packet, "invalid-xml")) { | |
144 text = _("Invalid XML"); | |
145 } else if(xmlnode_get_child(packet, "nonmatching-hosts")) { | |
146 text = _("Non-matching Hosts"); | |
147 } else if(xmlnode_get_child(packet, "not-authorized")) { | |
148 text = _("Not Authorized"); | |
149 } else if(xmlnode_get_child(packet, "policy-violation")) { | |
150 text = _("Policy Violation"); | |
151 } else if(xmlnode_get_child(packet, "remote-connection-failed")) { | |
152 text = _("Remote Connection Failed"); | |
153 } else if(xmlnode_get_child(packet, "resource-constraint")) { | |
154 text = _("Resource Constraint"); | |
155 } else if(xmlnode_get_child(packet, "restricted-xml")) { | |
156 text = _("Restricted XML"); | |
157 } else if(xmlnode_get_child(packet, "see-other-host")) { | |
158 text = _("See Other Host"); | |
159 } else if(xmlnode_get_child(packet, "system-shutdown")) { | |
160 text = _("System Shutdown"); | |
161 } else if(xmlnode_get_child(packet, "undefined-condition")) { | |
162 text = _("Undefined Condition"); | |
163 } else if(xmlnode_get_child(packet, "unsupported-encoding")) { | |
7417 | 164 text = _("Unsupported Encoding"); |
7014 | 165 } else if(xmlnode_get_child(packet, "unsupported-stanza-type")) { |
166 text = _("Unsupported Stanza Type"); | |
167 } else if(xmlnode_get_child(packet, "unsupported-version")) { | |
168 text = _("Unsupported Version"); | |
169 } else if(xmlnode_get_child(packet, "xml-not-well-formed")) { | |
170 text = _("XML Not Well Formed"); | |
3311 | 171 } else { |
7014 | 172 text = _("Stream Error"); |
3311 | 173 } |
174 | |
7014 | 175 if((textnode = xmlnode_get_child(packet, "text"))) |
176 error_text = xmlnode_get_data(textnode); | |
2086 | 177 |
7014 | 178 buf = g_strdup_printf("%s%s%s", text, |
179 error_text ? ": " : "", | |
180 error_text ? error_text : ""); | |
181 gaim_connection_error(js->gc, buf); | |
182 g_free(buf); | |
183 if(error_text) | |
184 g_free(error_text); | |
2086 | 185 } |
186 | |
7014 | 187 static void tls_init(JabberStream *js); |
2086 | 188 |
7014 | 189 void jabber_process_packet(JabberStream *js, xmlnode *packet) |
2086 | 190 { |
7014 | 191 if(!strcmp(packet->name, "iq")) { |
7395 | 192 jabber_iq_parse(js, packet); |
7014 | 193 } else if(!strcmp(packet->name, "presence")) { |
194 jabber_presence_parse(js, packet); | |
195 } else if(!strcmp(packet->name, "message")) { | |
196 jabber_message_parse(js, packet); | |
197 } else if(!strcmp(packet->name, "stream:features")) { | |
7395 | 198 jabber_stream_features_parse(js, packet); |
7014 | 199 } else if(!strcmp(packet->name, "stream:error")) { |
200 jabber_stream_handle_error(js, packet); | |
201 } else if(!strcmp(packet->name, "challenge")) { | |
202 if(js->state == JABBER_STREAM_AUTHENTICATING) | |
203 jabber_auth_handle_challenge(js, packet); | |
204 } else if(!strcmp(packet->name, "success")) { | |
205 if(js->state == JABBER_STREAM_AUTHENTICATING) | |
206 jabber_auth_handle_success(js, packet); | |
207 } else if(!strcmp(packet->name, "failure")) { | |
208 if(js->state == JABBER_STREAM_AUTHENTICATING) | |
209 jabber_auth_handle_failure(js, packet); | |
210 } else if(!strcmp(packet->name, "proceed")) { | |
211 if(js->state == JABBER_STREAM_AUTHENTICATING && !js->gsc) | |
212 tls_init(js); | |
213 } else { | |
214 gaim_debug(GAIM_DEBUG_WARNING, "jabber", "Unknown packet: %s\n", | |
215 packet->name); | |
2086 | 216 } |
217 } | |
218 | |
7642 | 219 void jabber_send_raw(JabberStream *js, const char *data, int len) |
2086 | 220 { |
7014 | 221 int ret; |
2086 | 222 |
7014 | 223 /* because printing a tab to debug every minute gets old */ |
224 if(strcmp(data, "\t")) | |
225 gaim_debug(GAIM_DEBUG_MISC, "jabber", "Sending%s: %s\n", | |
226 js->gsc ? " (ssl)" : "", data); | |
2086 | 227 |
7014 | 228 if(js->gsc) { |
7642 | 229 ret = gaim_ssl_write(js->gsc, data, len == -1 ? strlen(data) : len); |
7014 | 230 } else { |
8013 | 231 if(js->fd < 0) |
232 return; | |
7642 | 233 ret = write(js->fd, data, len == -1 ? strlen(data) : len); |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
234 } |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
235 |
7014 | 236 if(ret < 0) |
237 gaim_connection_error(js->gc, _("Write error")); | |
238 | |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
239 } |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
240 |
7014 | 241 void jabber_send(JabberStream *js, xmlnode *packet) |
2086 | 242 { |
7014 | 243 char *txt; |
7642 | 244 int len; |
2086 | 245 |
7642 | 246 txt = xmlnode_to_str(packet, &len); |
247 jabber_send_raw(js, txt, len); | |
7014 | 248 g_free(txt); |
2086 | 249 } |
250 | |
7014 | 251 static void jabber_keepalive(GaimConnection *gc) |
2086 | 252 { |
7642 | 253 jabber_send_raw(gc->proto_data, "\t", -1); |
2086 | 254 } |
255 | |
7014 | 256 static void |
257 jabber_recv_cb_ssl(gpointer data, GaimSslConnection *gsc, | |
6764 | 258 GaimInputCondition cond) |
259 { | |
7014 | 260 GaimConnection *gc = data; |
261 JabberStream *js = gc->proto_data; | |
6764 | 262 int len; |
7014 | 263 static char buf[4096]; |
6768 | 264 |
7014 | 265 if(!g_list_find(gaim_connections_get_all(), gc)) { |
6768 | 266 gaim_ssl_close(gsc); |
267 return; | |
268 } | |
269 | |
7014 | 270 if((len = gaim_ssl_read(gsc, buf, sizeof(buf) - 1)) > 0) { |
6764 | 271 buf[len] = '\0'; |
7014 | 272 gaim_debug(GAIM_DEBUG_INFO, "jabber", "Recv (ssl)(%d): %s\n", len, buf); |
273 jabber_parser_process(js, buf, len); | |
7177 | 274 } else { |
275 gaim_connection_error(gc, _("Read Error")); | |
2086 | 276 } |
277 } | |
278 | |
7014 | 279 static void |
280 jabber_recv_cb(gpointer data, gint source, GaimInputCondition condition) | |
2086 | 281 { |
5572 | 282 GaimConnection *gc = data; |
7014 | 283 JabberStream *js = gc->proto_data; |
284 int len; | |
285 static char buf[4096]; | |
2086 | 286 |
7014 | 287 if(!g_list_find(gaim_connections_get_all(), gc)) |
288 return; | |
2956 | 289 |
7014 | 290 if((len = read(js->fd, buf, sizeof(buf) - 1)) > 0) { |
291 buf[len] = '\0'; | |
292 gaim_debug(GAIM_DEBUG_INFO, "jabber", "Recv (%d): %s\n", len, buf); | |
293 jabber_parser_process(js, buf, len); | |
7177 | 294 } else { |
295 gaim_connection_error(gc, _("Read Error")); | |
7014 | 296 } |
2086 | 297 } |
298 | |
7014 | 299 static void |
300 jabber_login_callback_ssl(gpointer data, GaimSslConnection *gsc, | |
6764 | 301 GaimInputCondition cond) |
302 { | |
303 GaimConnection *gc = data; | |
7014 | 304 JabberStream *js = gc->proto_data; |
6764 | 305 |
7014 | 306 if(!g_list_find(gaim_connections_get_all(), gc)) { |
6764 | 307 gaim_ssl_close(gsc); |
308 return; | |
309 } | |
310 | |
7014 | 311 js->gsc = gsc; |
6764 | 312 |
7014 | 313 if(js->state == JABBER_STREAM_CONNECTING) |
7642 | 314 jabber_send_raw(js, "<?xml version='1.0' ?>", -1); |
6764 | 315 |
7014 | 316 jabber_stream_set_state(js, JABBER_STREAM_INITIALIZING); |
317 gaim_ssl_input_add(gsc, jabber_recv_cb_ssl, gc); | |
6764 | 318 } |
319 | |
7014 | 320 |
321 static void | |
322 jabber_login_callback(gpointer data, gint source, GaimInputCondition cond) | |
6764 | 323 { |
5572 | 324 GaimConnection *gc = data; |
7014 | 325 JabberStream *js = gc->proto_data; |
2086 | 326 |
7014 | 327 if(!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 328 close(source); |
329 return; | |
330 } | |
331 | |
7014 | 332 js->fd = source; |
2956 | 333 |
7014 | 334 if(js->state == JABBER_STREAM_CONNECTING) |
7642 | 335 jabber_send_raw(js, "<?xml version='1.0' ?>", -1); |
2300
d2686f757d6e
[gaim-migrate @ 2310]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2289
diff
changeset
|
336 |
7014 | 337 jabber_stream_set_state(js, JABBER_STREAM_INITIALIZING); |
338 gc->inpa = gaim_input_add(js->fd, GAIM_INPUT_READ, jabber_recv_cb, gc); | |
339 } | |
2086 | 340 |
7014 | 341 static void |
7426 | 342 jabber_ssl_connect_failure(GaimSslConnection *gsc, GaimSslErrorType error, |
343 gpointer data) | |
344 { | |
345 GaimConnection *gc = data; | |
346 | |
347 switch(error) { | |
348 case GAIM_SSL_HANDSHAKE_FAILED: | |
349 gaim_connection_error(gc, _("SSL Handshake Failed")); | |
350 break; | |
351 } | |
352 } | |
353 | |
7427 | 354 static void tls_init(JabberStream *js) |
355 { | |
356 gaim_input_remove(js->gc->inpa); | |
357 js->gc->inpa = 0; | |
358 js->gsc = gaim_ssl_connect_fd(js->gc->account, js->fd, | |
359 jabber_login_callback_ssl, jabber_ssl_connect_failure, js->gc); | |
360 } | |
361 | |
362 | |
7426 | 363 static void |
7014 | 364 jabber_login(GaimAccount *account) |
2086 | 365 { |
7014 | 366 int rc; |
367 GaimConnection *gc = gaim_account_get_connection(account); | |
368 const char *connect_server = gaim_account_get_string(account, | |
369 "connect_server", ""); | |
5572 | 370 const char *server; |
7014 | 371 JabberStream *js; |
2086 | 372 |
7014 | 373 gc->flags |= GAIM_CONNECTION_HTML; |
374 js = gc->proto_data = g_new0(JabberStream, 1); | |
375 js->gc = gc; | |
8013 | 376 js->fd = -1; |
7014 | 377 js->callbacks = g_hash_table_new_full(g_str_hash, g_str_equal, |
7395 | 378 g_free, g_free); |
7014 | 379 js->buddies = g_hash_table_new_full(g_str_hash, g_str_equal, |
7116 | 380 g_free, (GDestroyNotify)jabber_buddy_free); |
7014 | 381 js->chats = g_hash_table_new_full(g_str_hash, g_str_equal, |
382 g_free, NULL); | |
383 js->user = jabber_id_new(gaim_account_get_username(account)); | |
7322 | 384 js->next_id = g_random_int(); |
5613 | 385 |
7310 | 386 if(!js->user) { |
387 gaim_connection_error(gc, _("Invalid Jabber ID")); | |
388 return; | |
389 } | |
390 | |
7147 | 391 if(!js->user->resource) { |
392 char *me; | |
393 js->user->resource = g_strdup("Gaim"); | |
394 if(!js->user->node) { | |
395 js->user->node = js->user->domain; | |
396 js->user->domain = g_strdup("jabber.org"); | |
397 } | |
398 me = g_strdup_printf("%s@%s/%s", js->user->node, js->user->domain, | |
399 js->user->resource); | |
400 gaim_account_set_username(account, me); | |
401 g_free(me); | |
7145 | 402 } |
403 | |
7014 | 404 server = connect_server[0] ? connect_server : js->user->domain; |
2086 | 405 |
7014 | 406 jabber_stream_set_state(js, JABBER_STREAM_CONNECTING); |
2956 | 407 |
7630 | 408 |
409 if(gaim_account_get_bool(account, "old_ssl", FALSE)) { | |
410 if(gaim_ssl_is_supported()) { | |
411 js->gsc = gaim_ssl_connect(account, server, | |
412 gaim_account_get_int(account, "port", 5222), | |
413 jabber_login_callback_ssl, jabber_ssl_connect_failure, gc); | |
414 } else { | |
415 gaim_connection_error(gc, _("SSL support unavailable")); | |
416 } | |
3311 | 417 } |
3770 | 418 |
7014 | 419 if(!js->gsc) { |
420 rc = gaim_proxy_connect(account, server, | |
421 gaim_account_get_int(account, "port", 5222), | |
422 jabber_login_callback, gc); | |
2086 | 423 |
7014 | 424 if (rc != 0) |
425 gaim_connection_error(gc, _("Unable to create socket")); | |
2956 | 426 } |
2086 | 427 } |
428 | |
7072 | 429 static gboolean |
430 conn_close_cb(gpointer data) | |
431 { | |
432 JabberStream *js = data; | |
433 gaim_connection_destroy(js->gc); | |
434 return FALSE; | |
435 } | |
436 | |
437 static void | |
438 jabber_connection_schedule_close(JabberStream *js) | |
439 { | |
440 g_timeout_add(0, conn_close_cb, js); | |
441 } | |
442 | |
443 static void | |
7395 | 444 jabber_registration_result_cb(JabberStream *js, xmlnode *packet, gpointer data) |
7072 | 445 { |
446 const char *type = xmlnode_get_attrib(packet, "type"); | |
447 char *buf; | |
448 | |
449 if(!strcmp(type, "result")) { | |
450 buf = g_strdup_printf(_("Registration of %s@%s successful"), | |
451 js->user->node, js->user->domain); | |
452 gaim_notify_info(NULL, _("Registration Successful"), | |
453 _("Registration Successful"), buf); | |
454 g_free(buf); | |
455 } else { | |
456 char *error; | |
457 xmlnode *y; | |
458 | |
459 if((y = xmlnode_get_child(packet, "error"))) { | |
460 error = xmlnode_get_data(y); | |
461 } else { | |
462 error = g_strdup(_("Unknown Error")); | |
463 } | |
464 | |
465 buf = g_strdup_printf(_("Registration of %s@%s failed: %s"), | |
466 js->user->node, js->user->domain, error); | |
467 gaim_notify_error(NULL, _("Registration Failed"), | |
468 _("Registration Failed"), buf); | |
469 g_free(buf); | |
470 g_free(error); | |
471 } | |
472 jabber_connection_schedule_close(js); | |
473 } | |
474 | |
475 static void | |
476 jabber_register_cb(JabberStream *js, GaimRequestFields *fields) | |
477 { | |
478 GList *groups, *flds; | |
479 xmlnode *query, *y; | |
480 JabberIq *iq; | |
7264 | 481 char *username; |
7072 | 482 |
483 iq = jabber_iq_new_query(js, JABBER_IQ_SET, "jabber:iq:register"); | |
484 query = xmlnode_get_child(iq->node, "query"); | |
485 | |
486 for(groups = gaim_request_fields_get_groups(fields); groups; | |
487 groups = groups->next) { | |
488 for(flds = gaim_request_field_group_get_fields(groups->data); | |
489 flds; flds = flds->next) { | |
490 GaimRequestField *field = flds->data; | |
491 const char *id = gaim_request_field_get_id(field); | |
492 const char *value = gaim_request_field_string_get_value(field); | |
493 | |
494 if(!strcmp(id, "username")) { | |
495 y = xmlnode_new_child(query, "username"); | |
496 } else if(!strcmp(id, "password")) { | |
497 y = xmlnode_new_child(query, "password"); | |
498 } else if(!strcmp(id, "name")) { | |
499 y = xmlnode_new_child(query, "name"); | |
500 } else if(!strcmp(id, "email")) { | |
501 y = xmlnode_new_child(query, "email"); | |
502 } else if(!strcmp(id, "nick")) { | |
503 y = xmlnode_new_child(query, "nick"); | |
504 } else if(!strcmp(id, "first")) { | |
505 y = xmlnode_new_child(query, "first"); | |
506 } else if(!strcmp(id, "last")) { | |
507 y = xmlnode_new_child(query, "last"); | |
508 } else if(!strcmp(id, "address")) { | |
509 y = xmlnode_new_child(query, "address"); | |
510 } else if(!strcmp(id, "city")) { | |
511 y = xmlnode_new_child(query, "city"); | |
512 } else if(!strcmp(id, "state")) { | |
513 y = xmlnode_new_child(query, "state"); | |
514 } else if(!strcmp(id, "zip")) { | |
515 y = xmlnode_new_child(query, "zip"); | |
516 } else if(!strcmp(id, "phone")) { | |
517 y = xmlnode_new_child(query, "phone"); | |
518 } else if(!strcmp(id, "url")) { | |
519 y = xmlnode_new_child(query, "url"); | |
520 } else if(!strcmp(id, "date")) { | |
521 y = xmlnode_new_child(query, "date"); | |
522 } else { | |
523 continue; | |
524 } | |
525 xmlnode_insert_data(y, value, -1); | |
7264 | 526 if(!strcmp(id, "username")) { |
527 if(js->user->node) | |
528 g_free(js->user->node); | |
529 js->user->node = g_strdup(value); | |
530 } | |
7072 | 531 } |
532 } | |
533 | |
7264 | 534 username = g_strdup_printf("%s@%s/%s", js->user->node, js->user->domain, |
535 js->user->resource); | |
536 gaim_account_set_username(js->gc->account, username); | |
537 g_free(username); | |
538 | |
7395 | 539 jabber_iq_set_callback(iq, jabber_registration_result_cb, NULL); |
7072 | 540 |
541 jabber_iq_send(iq); | |
542 | |
543 } | |
544 | |
545 static void | |
546 jabber_register_cancel_cb(JabberStream *js, GaimRequestFields *fields) | |
547 { | |
548 jabber_connection_schedule_close(js); | |
549 } | |
550 | |
7923 | 551 static void jabber_register_x_data_cb(JabberStream *js, xmlnode *result, gpointer data) |
552 { | |
553 xmlnode *query; | |
554 JabberIq *iq; | |
555 | |
556 iq = jabber_iq_new_query(js, JABBER_IQ_SET, "jabber:iq:register"); | |
557 query = xmlnode_get_child(iq->node, "query"); | |
558 | |
559 xmlnode_insert_child(query, result); | |
560 | |
561 jabber_iq_set_callback(iq, jabber_registration_result_cb, NULL); | |
562 jabber_iq_send(iq); | |
563 } | |
564 | |
7072 | 565 void jabber_register_parse(JabberStream *js, xmlnode *packet) |
566 { | |
567 if(js->registration) { | |
568 GaimRequestFields *fields; | |
569 GaimRequestFieldGroup *group; | |
570 GaimRequestField *field; | |
7923 | 571 xmlnode *query, *x, *y; |
7072 | 572 char *instructions; |
573 | |
574 /* get rid of the login thingy */ | |
575 gaim_connection_set_state(js->gc, GAIM_CONNECTED); | |
576 | |
577 query = xmlnode_get_child(packet, "query"); | |
578 | |
579 if(xmlnode_get_child(query, "registered")) { | |
580 gaim_notify_error(NULL, _("Already Registered"), | |
581 _("Already Registered"), NULL); | |
582 jabber_connection_schedule_close(js); | |
583 return; | |
584 } | |
585 | |
7923 | 586 for(x = packet->child; x; x = x->next) { |
587 const char *xmlns; | |
8010 | 588 if(x->type != NODE_TYPE_TAG || strcmp(x->name, "x")) |
7923 | 589 continue; |
590 | |
591 if(!(xmlns = xmlnode_get_attrib(x, "xmlns"))) | |
592 continue; | |
593 | |
594 if(!strcmp(xmlns, "jabber:x:data")) { | |
595 jabber_x_data_request(js, x, jabber_register_x_data_cb, NULL); | |
596 return; | |
597 } | |
598 } | |
599 | |
600 /* XXX: if no jabber:x:data, but jabber:x:oob is there, use that */ | |
601 | |
602 /* as a last resort, use the old jabber:iq:register syntax */ | |
603 | |
7072 | 604 fields = gaim_request_fields_new(); |
605 group = gaim_request_field_group_new(NULL); | |
606 gaim_request_fields_add_group(fields, group); | |
607 | |
608 field = gaim_request_field_string_new("username", _("Username"), | |
609 js->user->node, FALSE); | |
610 gaim_request_field_group_add_field(group, field); | |
611 | |
612 field = gaim_request_field_string_new("password", _("Password"), | |
613 gaim_account_get_password(js->gc->account), FALSE); | |
614 gaim_request_field_string_set_masked(field, TRUE); | |
615 gaim_request_field_group_add_field(group, field); | |
616 | |
617 if(xmlnode_get_child(query, "name")) { | |
618 field = gaim_request_field_string_new("name", _("Name"), | |
619 gaim_account_get_alias(js->gc->account), FALSE); | |
620 gaim_request_field_group_add_field(group, field); | |
621 } | |
622 if(xmlnode_get_child(query, "email")) { | |
623 field = gaim_request_field_string_new("email", _("E-Mail"), | |
624 NULL, FALSE); | |
625 gaim_request_field_group_add_field(group, field); | |
626 } | |
627 if(xmlnode_get_child(query, "nick")) { | |
628 field = gaim_request_field_string_new("nick", _("Nickname"), | |
629 NULL, FALSE); | |
630 gaim_request_field_group_add_field(group, field); | |
631 } | |
632 if(xmlnode_get_child(query, "first")) { | |
633 field = gaim_request_field_string_new("first", _("First Name"), | |
634 NULL, FALSE); | |
635 gaim_request_field_group_add_field(group, field); | |
636 } | |
637 if(xmlnode_get_child(query, "last")) { | |
638 field = gaim_request_field_string_new("last", _("Last Name"), | |
639 NULL, FALSE); | |
640 gaim_request_field_group_add_field(group, field); | |
641 } | |
642 if(xmlnode_get_child(query, "address")) { | |
643 field = gaim_request_field_string_new("address", _("Address"), | |
644 NULL, FALSE); | |
645 gaim_request_field_group_add_field(group, field); | |
646 } | |
647 if(xmlnode_get_child(query, "city")) { | |
648 field = gaim_request_field_string_new("city", _("City"), | |
649 NULL, FALSE); | |
650 gaim_request_field_group_add_field(group, field); | |
651 } | |
652 if(xmlnode_get_child(query, "state")) { | |
653 field = gaim_request_field_string_new("state", _("State"), | |
654 NULL, FALSE); | |
655 gaim_request_field_group_add_field(group, field); | |
656 } | |
657 if(xmlnode_get_child(query, "zip")) { | |
658 field = gaim_request_field_string_new("zip", _("Postal Code"), | |
659 NULL, FALSE); | |
660 gaim_request_field_group_add_field(group, field); | |
661 } | |
662 if(xmlnode_get_child(query, "phone")) { | |
663 field = gaim_request_field_string_new("phone", _("Phone"), | |
664 NULL, FALSE); | |
665 gaim_request_field_group_add_field(group, field); | |
666 } | |
667 if(xmlnode_get_child(query, "url")) { | |
668 field = gaim_request_field_string_new("url", _("URL"), | |
669 NULL, FALSE); | |
670 gaim_request_field_group_add_field(group, field); | |
671 } | |
672 if(xmlnode_get_child(query, "date")) { | |
673 field = gaim_request_field_string_new("date", _("Date"), | |
674 NULL, FALSE); | |
675 gaim_request_field_group_add_field(group, field); | |
676 } | |
677 | |
678 if((y = xmlnode_get_child(query, "instructions"))) | |
679 instructions = xmlnode_get_data(y); | |
680 else | |
681 instructions = g_strdup(_("Please fill out the information below " | |
682 "to register your new account.")); | |
683 | |
684 gaim_request_fields(js->gc, _("Register New Jabber Account"), | |
685 _("Register New Jabber Account"), instructions, fields, | |
686 _("Register"), G_CALLBACK(jabber_register_cb), | |
687 _("Cancel"), G_CALLBACK(jabber_register_cancel_cb), js); | |
688 } | |
689 } | |
690 | |
8016 | 691 void jabber_register_start(JabberStream *js) |
7072 | 692 { |
693 JabberIq *iq; | |
694 | |
695 iq = jabber_iq_new_query(js, JABBER_IQ_GET, "jabber:iq:register"); | |
696 jabber_iq_send(iq); | |
697 } | |
698 | |
699 static void jabber_register_account(GaimAccount *account) | |
700 { | |
701 GaimConnection *gc = gaim_account_get_connection(account); | |
702 JabberStream *js; | |
703 const char *connect_server = gaim_account_get_string(account, | |
704 "connect_server", ""); | |
705 const char *server; | |
706 int rc; | |
707 | |
708 js = gc->proto_data = g_new0(JabberStream, 1); | |
709 js->gc = gc; | |
710 js->registration = TRUE; | |
711 js->callbacks = g_hash_table_new_full(g_str_hash, g_str_equal, | |
7395 | 712 g_free, g_free); |
7072 | 713 js->user = jabber_id_new(gaim_account_get_username(account)); |
7322 | 714 js->next_id = g_random_int(); |
7072 | 715 |
7310 | 716 if(!js->user) { |
717 gaim_connection_error(gc, _("Invalid Jabber ID")); | |
718 return; | |
719 } | |
720 | |
7147 | 721 if(!js->user->resource) { |
722 char *me; | |
723 js->user->resource = g_strdup("Gaim"); | |
724 if(!js->user->node) { | |
725 js->user->node = js->user->domain; | |
726 js->user->domain = g_strdup("jabber.org"); | |
727 } | |
728 me = g_strdup_printf("%s@%s/%s", js->user->node, js->user->domain, | |
729 js->user->resource); | |
730 gaim_account_set_username(account, me); | |
731 g_free(me); | |
732 } | |
733 | |
7072 | 734 server = connect_server[0] ? connect_server : js->user->domain; |
735 | |
736 jabber_stream_set_state(js, JABBER_STREAM_CONNECTING); | |
737 | |
7630 | 738 if(gaim_account_get_bool(account, "old_ssl", FALSE)) { |
739 if(gaim_ssl_is_supported()) { | |
740 js->gsc = gaim_ssl_connect(account, server, | |
741 gaim_account_get_int(account, "port", 5222), | |
742 jabber_login_callback_ssl, jabber_ssl_connect_failure, gc); | |
743 } else { | |
744 gaim_connection_error(gc, _("SSL support unavailable")); | |
745 } | |
7072 | 746 } |
747 | |
748 if(!js->gsc) { | |
749 rc = gaim_proxy_connect(account, server, | |
750 gaim_account_get_int(account, "port", 5222), | |
751 jabber_login_callback, gc); | |
752 | |
753 if (rc != 0) | |
754 gaim_connection_error(gc, _("Unable to create socket")); | |
755 } | |
756 } | |
757 | |
5572 | 758 static void jabber_close(GaimConnection *gc) |
2086 | 759 { |
7014 | 760 JabberStream *js = gc->proto_data; |
2956 | 761 |
7642 | 762 jabber_send_raw(js, "</stream:stream>", -1); |
3311 | 763 |
7014 | 764 if(js->gsc) { |
765 gaim_ssl_close(js->gsc); | |
766 } else { | |
7072 | 767 if(js->gc->inpa) |
768 gaim_input_remove(js->gc->inpa); | |
7014 | 769 close(js->fd); |
770 } | |
3311 | 771 |
7587 | 772 if(js->context) |
773 g_markup_parse_context_free(js->context); | |
7072 | 774 if(js->callbacks) |
775 g_hash_table_destroy(js->callbacks); | |
776 if(js->buddies) | |
777 g_hash_table_destroy(js->buddies); | |
778 if(js->chats) | |
779 g_hash_table_destroy(js->chats); | |
7014 | 780 if(js->stream_id) |
781 g_free(js->stream_id); | |
7587 | 782 if(js->user) |
783 jabber_id_free(js->user); | |
7014 | 784 g_free(js); |
5093 | 785 } |
786 | |
7395 | 787 static void jabber_server_probe(JabberStream *js) |
788 { | |
789 JabberIq *iq = jabber_iq_new_query(js, JABBER_IQ_GET, | |
790 "http://jabber.org/protocol/disco#items"); | |
791 | |
792 xmlnode_set_attrib(iq->node, "to", js->user->domain); | |
793 jabber_iq_send(iq); | |
794 } | |
795 | |
7014 | 796 void jabber_stream_set_state(JabberStream *js, JabberStreamState state) |
3105 | 797 { |
7014 | 798 js->state = state; |
799 switch(state) { | |
800 case JABBER_STREAM_OFFLINE: | |
801 break; | |
802 case JABBER_STREAM_CONNECTING: | |
803 gaim_connection_update_progress(js->gc, _("Connecting"), 1, | |
804 JABBER_CONNECT_STEPS); | |
805 break; | |
806 case JABBER_STREAM_INITIALIZING: | |
807 gaim_connection_update_progress(js->gc, _("Initializing Stream"), | |
808 js->gsc ? 5 : 2, JABBER_CONNECT_STEPS); | |
809 jabber_stream_init(js); | |
810 jabber_parser_setup(js); | |
811 break; | |
812 case JABBER_STREAM_AUTHENTICATING: | |
813 gaim_connection_update_progress(js->gc, _("Authenticating"), | |
814 js->gsc ? 6 : 3, JABBER_CONNECT_STEPS); | |
8016 | 815 if(js->protocol_version == JABBER_PROTO_0_9) { |
816 if(js->registration) | |
817 jabber_register_start(js); | |
818 else | |
819 jabber_auth_start_old(js); | |
820 } | |
7014 | 821 break; |
822 case JABBER_STREAM_REINITIALIZING: | |
823 gaim_connection_update_progress(js->gc, _("Re-initializing Stream"), | |
824 6, JABBER_CONNECT_STEPS); | |
825 jabber_stream_init(js); | |
826 break; | |
827 case JABBER_STREAM_CONNECTED: | |
828 gaim_connection_set_state(js->gc, GAIM_CONNECTED); | |
829 jabber_roster_request(js); | |
830 jabber_presence_send(js->gc, js->gc->away_state, js->gc->away); | |
7395 | 831 jabber_server_probe(js); |
7014 | 832 serv_finish_login(js->gc); |
833 break; | |
3105 | 834 } |
835 } | |
836 | |
7014 | 837 char *jabber_get_next_id(JabberStream *js) |
2086 | 838 { |
7322 | 839 return g_strdup_printf("gaim%x", js->next_id++); |
2086 | 840 } |
841 | |
7923 | 842 |
843 static void jabber_idle_set(GaimConnection *gc, int idle) | |
3340 | 844 { |
7014 | 845 JabberStream *js = gc->proto_data; |
3340 | 846 |
7014 | 847 js->idle = idle ? time(NULL) - idle : idle; |
3314 | 848 } |
849 | |
6695 | 850 static const char *jabber_list_icon(GaimAccount *a, GaimBuddy *b) |
2086 | 851 { |
4687 | 852 return "jabber"; |
853 } | |
4916 | 854 |
7014 | 855 static void jabber_list_emblems(GaimBuddy *b, char **se, char **sw, |
856 char **nw, char **ne) | |
4916 | 857 { |
7014 | 858 JabberStream *js; |
859 JabberBuddy *jb; | |
860 | |
861 if(!b->account->gc) | |
862 return; | |
863 js = b->account->gc->proto_data; | |
864 jb = jabber_buddy_find(js, b->name, FALSE); | |
5135 | 865 |
866 if(!GAIM_BUDDY_IS_ONLINE(b)) { | |
7014 | 867 if(jb && jb->error_msg) |
4927 | 868 *nw = "error"; |
5135 | 869 |
7014 | 870 if(jb && (jb->subscription & JABBER_SUB_PENDING || |
871 !(jb->subscription & JABBER_SUB_TO))) | |
5135 | 872 *se = "notauthorized"; |
873 else | |
874 *se = "offline"; | |
4916 | 875 } else { |
876 switch (b->uc) { | |
7014 | 877 case JABBER_STATE_AWAY: |
878 *se = "away"; | |
879 break; | |
880 case JABBER_STATE_CHAT: | |
881 *se = "chat"; | |
882 break; | |
883 case JABBER_STATE_XA: | |
884 *se = "extendedaway"; | |
885 break; | |
886 case JABBER_STATE_DND: | |
887 *se = "extendedaway"; | |
888 break; | |
889 case JABBER_STATE_ERROR: | |
890 *se = "error"; | |
891 break; | |
4916 | 892 } |
2086 | 893 } |
4916 | 894 } |
2086 | 895 |
7014 | 896 static char *jabber_status_text(GaimBuddy *b) |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
897 { |
7014 | 898 JabberBuddy *jb = jabber_buddy_find(b->account->gc->proto_data, b->name, |
899 FALSE); | |
900 char *ret = NULL; | |
5234 | 901 |
7014 | 902 if(jb && !GAIM_BUDDY_IS_ONLINE(b) && (jb->subscription & JABBER_SUB_PENDING || !(jb->subscription & JABBER_SUB_TO))) { |
903 ret = g_strdup(_("Not Authorized")); | |
904 } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && jb->error_msg) { | |
905 ret = g_strdup(jb->error_msg); | |
2956 | 906 } else { |
7095
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
907 char *stripped; |
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
908 |
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
909 stripped = gaim_markup_strip_html(jabber_buddy_get_status_msg(jb)); |
2956 | 910 |
7014 | 911 if(!stripped && b->uc & UC_UNAVAILABLE) |
912 stripped = g_strdup(jabber_get_state_string(b->uc)); | |
2086 | 913 |
7014 | 914 if(stripped) { |
915 ret = g_markup_escape_text(stripped, -1); | |
916 g_free(stripped); | |
917 } | |
2086 | 918 } |
919 | |
7014 | 920 return ret; |
2956 | 921 } |
922 | |
6695 | 923 static char *jabber_tooltip_text(GaimBuddy *b) |
4744 | 924 { |
7014 | 925 JabberBuddy *jb = jabber_buddy_find(b->account->gc->proto_data, b->name, |
926 FALSE); | |
927 JabberBuddyResource *jbr = jabber_buddy_find_resource(jb, NULL); | |
5135 | 928 char *ret = NULL; |
7014 | 929 |
930 if(jbr) { | |
4777 | 931 char *text = NULL; |
7014 | 932 if(jbr->status) { |
933 char *stripped; | |
7095
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
934 stripped = gaim_markup_strip_html(jbr->status); |
7014 | 935 text = g_markup_escape_text(stripped, -1); |
936 g_free(stripped); | |
937 } | |
938 | |
5236 | 939 ret = g_strdup_printf("<b>%s:</b> %s%s%s", |
940 _("Status"), | |
7014 | 941 jabber_get_state_string(jbr->state), |
942 text ? ": " : "", | |
4745 | 943 text ? text : ""); |
7014 | 944 if(text) |
4745 | 945 g_free(text); |
7014 | 946 } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && jb->error_msg) { |
947 ret = g_strdup_printf("<b>%s:</b> %s", | |
948 _("Error"), jb->error_msg); | |
949 } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && | |
950 (jb->subscription & JABBER_SUB_PENDING || | |
951 !(jb->subscription & JABBER_SUB_TO))) { | |
952 ret = g_strdup_printf("<b>%s:</b> %s", | |
953 _("Status"), _("Not Authorized")); | |
4745 | 954 } |
4744 | 955 |
5135 | 956 return ret; |
4732 | 957 } |
958 | |
7014 | 959 static GList *jabber_away_states(GaimConnection *gc) |
960 { | |
2086 | 961 GList *m = NULL; |
962 | |
4982 | 963 m = g_list_append(m, _("Online")); |
964 m = g_list_append(m, _("Chatty")); | |
965 m = g_list_append(m, _("Away")); | |
966 m = g_list_append(m, _("Extended Away")); | |
967 m = g_list_append(m, _("Do Not Disturb")); | |
968 m = g_list_append(m, _("Invisible")); | |
4110 | 969 m = g_list_append(m, GAIM_AWAY_CUSTOM); |
2086 | 970 |
971 return m; | |
972 } | |
973 | |
7395 | 974 static void |
975 jabber_password_change_result_cb(JabberStream *js, xmlnode *packet, | |
976 gpointer data) | |
7124 | 977 { |
978 const char *type; | |
979 | |
980 type = xmlnode_get_attrib(packet, "type"); | |
981 | |
982 if(!strcmp(type, "result")) { | |
983 gaim_notify_info(js->gc, _("Password Changed"), _("Password Changed"), | |
984 _("Your password has been changed.")); | |
985 } else { | |
986 xmlnode *error; | |
987 char *buf, *error_txt = NULL; | |
988 | |
989 | |
990 if((error = xmlnode_get_child(packet, "error"))) | |
991 error_txt = xmlnode_get_data(error); | |
992 | |
993 if(error_txt) { | |
994 buf = g_strdup_printf(_("Error changing password: %s"), | |
995 error_txt); | |
996 g_free(error_txt); | |
997 } else { | |
998 buf = g_strdup(_("Unknown error occurred changing password")); | |
999 } | |
1000 | |
1001 gaim_notify_error(js->gc, _("Error"), _("Error"), buf); | |
1002 g_free(buf); | |
1003 } | |
1004 } | |
1005 | |
1006 static void jabber_password_change_cb(JabberStream *js, | |
1007 GaimRequestFields *fields) | |
1008 { | |
1009 const char *p1, *p2; | |
1010 JabberIq *iq; | |
1011 xmlnode *query, *y; | |
1012 | |
1013 p1 = gaim_request_fields_get_string(fields, "password1"); | |
1014 p2 = gaim_request_fields_get_string(fields, "password2"); | |
1015 | |
1016 if(strcmp(p1, p2)) { | |
1017 gaim_notify_error(js->gc, NULL, _("New passwords do not match."), NULL); | |
1018 return; | |
1019 } | |
1020 | |
1021 iq = jabber_iq_new_query(js, JABBER_IQ_SET, "jabber:iq:register"); | |
1022 | |
1023 xmlnode_set_attrib(iq->node, "to", js->user->domain); | |
1024 | |
1025 query = xmlnode_get_child(iq->node, "query"); | |
1026 | |
1027 y = xmlnode_new_child(query, "username"); | |
1028 xmlnode_insert_data(y, js->user->node, -1); | |
1029 y = xmlnode_new_child(query, "password"); | |
1030 xmlnode_insert_data(y, p1, -1); | |
1031 | |
7395 | 1032 jabber_iq_set_callback(iq, jabber_password_change_result_cb, NULL); |
7124 | 1033 |
1034 jabber_iq_send(iq); | |
1035 | |
1036 gaim_account_set_password(js->gc->account, p1); | |
1037 } | |
1038 | |
1039 static void jabber_password_change(GaimConnection *gc) | |
1040 { | |
1041 JabberStream *js = gc->proto_data; | |
1042 GaimRequestFields *fields; | |
1043 GaimRequestFieldGroup *group; | |
1044 GaimRequestField *field; | |
1045 | |
1046 fields = gaim_request_fields_new(); | |
1047 group = gaim_request_field_group_new(NULL); | |
1048 gaim_request_fields_add_group(fields, group); | |
1049 | |
1050 field = gaim_request_field_string_new("password1", _("Password"), | |
1051 "", FALSE); | |
1052 gaim_request_field_string_set_masked(field, TRUE); | |
1053 gaim_request_field_group_add_field(group, field); | |
1054 | |
1055 field = gaim_request_field_string_new("password2", _("Password (again)"), | |
1056 "", FALSE); | |
1057 gaim_request_field_string_set_masked(field, TRUE); | |
1058 gaim_request_field_group_add_field(group, field); | |
1059 | |
1060 gaim_request_fields(js->gc, _("Change Jabber Password"), | |
1061 _("Change Jabber Password"), _("Please enter your new password"), | |
1062 fields, _("OK"), G_CALLBACK(jabber_password_change_cb), | |
1063 _("Cancel"), NULL, js); | |
1064 } | |
1065 | |
5572 | 1066 static GList *jabber_actions(GaimConnection *gc) |
2956 | 1067 { |
7124 | 1068 JabberStream *js = gc->proto_data; |
2956 | 1069 GList *m = NULL; |
4333 | 1070 struct proto_actions_menu *pam; |
1071 | |
1072 pam = g_new0(struct proto_actions_menu, 1); | |
1073 pam->label = _("Set User Info"); | |
1074 pam->callback = jabber_setup_set_info; | |
1075 pam->gc = gc; | |
1076 m = g_list_append(m, pam); | |
1077 | |
7124 | 1078 if(js->protocol_version == JABBER_PROTO_0_9) { |
1079 pam = g_new0(struct proto_actions_menu, 1); | |
1080 pam->label = _("Change Password"); | |
1081 pam->callback = jabber_password_change; | |
1082 pam->gc = gc; | |
1083 m = g_list_append(m, pam); | |
1084 } | |
2956 | 1085 |
1086 return m; | |
1087 } | |
1088 | |
7999 | 1089 static GaimChat *jabber_find_blist_chat(GaimAccount *account, const char *name) |
1090 { | |
1091 GaimBlistNode *gnode, *cnode; | |
1092 JabberID *jid; | |
1093 | |
1094 if(!(jid = jabber_id_new(name))) | |
1095 return NULL; | |
1096 | |
1097 for(gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { | |
1098 for(cnode = gnode->child; cnode; cnode = cnode->next) { | |
1099 GaimChat *chat = (GaimChat*)cnode; | |
1100 const char *room, *server; | |
1101 if(!GAIM_BLIST_NODE_IS_CHAT(cnode)) | |
1102 continue; | |
1103 | |
1104 if(chat->account != account) | |
8011 | 1105 continue; |
7999 | 1106 |
1107 if(!(room = g_hash_table_lookup(chat->components, "room"))) | |
1108 continue; | |
1109 if(!(server = g_hash_table_lookup(chat->components, "server"))) | |
1110 continue; | |
1111 | |
1112 if(!g_utf8_collate(room, jid->node) && !g_utf8_collate(server, jid->domain)) { | |
1113 jabber_id_free(jid); | |
1114 return chat; | |
1115 } | |
1116 } | |
1117 } | |
1118 jabber_id_free(jid); | |
1119 return NULL; | |
1120 } | |
1121 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1122 static GaimPluginProtocolInfo prpl_info = |
2086 | 1123 { |
7014 | 1124 OPT_PROTO_CHAT_TOPIC | OPT_PROTO_UNIQUE_CHATNAME, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1125 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1126 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1127 jabber_list_icon, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1128 jabber_list_emblems, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1129 jabber_status_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1130 jabber_tooltip_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1131 jabber_away_states, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1132 jabber_actions, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1133 jabber_buddy_menu, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1134 jabber_chat_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1135 jabber_login, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1136 jabber_close, |
7014 | 1137 jabber_message_send_im, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1138 jabber_set_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1139 jabber_send_typing, |
7014 | 1140 jabber_buddy_get_info, |
1141 jabber_presence_send, | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1142 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1143 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1144 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1145 NULL, |
7014 | 1146 jabber_idle_set, |
7514 | 1147 NULL, |
7014 | 1148 jabber_roster_add_buddy, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1149 NULL, |
7014 | 1150 jabber_roster_remove_buddy, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1151 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1152 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1153 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1154 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1155 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1156 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1157 NULL, |
7014 | 1158 jabber_chat_join, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1159 jabber_chat_invite, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1160 jabber_chat_leave, |
7400 | 1161 NULL, |
7014 | 1162 jabber_message_send_chat, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1163 jabber_keepalive, |
7072 | 1164 jabber_register_account, |
7014 | 1165 jabber_buddy_get_info_chat, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1166 NULL, |
7014 | 1167 jabber_roster_alias_change, |
1168 jabber_roster_group_change, | |
1169 jabber_roster_group_rename, | |
1170 NULL, | |
1171 NULL, /* convo_closed */ /* XXX: thread_ids */ | |
7398 | 1172 jabber_normalize, |
1173 NULL, /* set_buddy_icon */ | |
1174 NULL, /* remove_group */ | |
7971 | 1175 jabber_chat_buddy_real_name, |
7999 | 1176 jabber_chat_set_topic, |
1177 jabber_find_blist_chat | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1178 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1179 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1180 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1181 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1182 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1183 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1184 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1185 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1186 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1187 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1188 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1189 "prpl-jabber", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1190 "Jabber", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1191 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1192 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1193 N_("Jabber Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1194 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1195 N_("Jabber Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1196 NULL, /**< author */ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
1197 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1198 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1199 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1200 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1201 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1202 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1203 NULL, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1204 &prpl_info /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1205 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1206 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1207 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
1208 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1209 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1210 GaimAccountUserSplit *split; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1211 GaimAccountOption *option; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1212 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1213 split = gaim_account_user_split_new(_("Server"), "jabber.org", '@'); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1214 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
|
1215 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1216 split = gaim_account_user_split_new(_("Resource"), "Gaim", '/'); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1217 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
|
1218 |
7630 | 1219 option = gaim_account_option_bool_new(_("Use TLS if available"), "use_tls", |
1220 TRUE); | |
1221 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
1222 option); | |
1223 | |
1224 option = gaim_account_option_bool_new(_("Force old SSL"), "old_ssl", FALSE); | |
7124 | 1225 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
1226 option); | |
6764 | 1227 |
7014 | 1228 option = gaim_account_option_int_new(_("Port"), "port", 5222); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1229 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
7014 | 1230 option); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1231 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
1232 option = gaim_account_option_string_new(_("Connect server"), |
7014 | 1233 "connect_server", NULL); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1234 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
7014 | 1235 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1236 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1237 my_protocol = plugin; |
7014 | 1238 |
1239 gaim_prefs_add_none("/plugins/prpl/jabber"); | |
1240 gaim_prefs_add_bool("/plugins/prpl/jabber/hide_os", FALSE); | |
2086 | 1241 } |
1242 | |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
1243 GAIM_INIT_PLUGIN(jabber, init_plugin, info); |