Tue, 13 Jan 2004 00:03:27 +0000
[gaim-migrate @ 8785]
let people enable plain authentication over unencrypted channels if they
really want to. and plug a memory leak in said authentication scheme.
| 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
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
21 | #include "internal.h" |
|
754c63f29b77
[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
17d2b54254f8
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
32 | #include "util.h" |
|
5872
754c63f29b77
[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
754c63f29b77
[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
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
48 | static GaimPlugin *my_protocol = NULL; |
|
4249
62583b5d3663
[gaim-migrate @ 4499]
Robert McQueen <robot101@debian.org>
parents:
4245
diff
changeset
|
49 | |
| 7014 | 50 | static void jabber_stream_init(JabberStream *js) |
| 51 | { | |
| 52 | char *open_stream; | |
|
3340
7e59a209931d
[gaim-migrate @ 3359]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3337
diff
changeset
|
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
03f5b77cdaf0
[gaim-migrate @ 8693]
Olivier Blin <blino@users.sourceforge.net>
parents:
8011
diff
changeset
|
231 | if(js->fd < 0) |
|
03f5b77cdaf0
[gaim-migrate @ 8693]
Olivier Blin <blino@users.sourceforge.net>
parents:
8011
diff
changeset
|
232 | return; |
| 7642 | 233 | ret = write(js->fd, data, len == -1 ? strlen(data) : len); |
|
2814
91cc1a0cdee0
[gaim-migrate @ 2827]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2800
diff
changeset
|
234 | } |
|
91cc1a0cdee0
[gaim-migrate @ 2827]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2800
diff
changeset
|
235 | |
| 7014 | 236 | if(ret < 0) |
| 237 | gaim_connection_error(js->gc, _("Write error")); | |
| 238 | ||
|
2814
91cc1a0cdee0
[gaim-migrate @ 2827]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2800
diff
changeset
|
239 | } |
|
91cc1a0cdee0
[gaim-migrate @ 2827]
Eric Warmenhoven <warmenhoven@yahoo.com>
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
06a3c10f4918
[gaim-migrate @ 2310]
Eric Warmenhoven <warmenhoven@yahoo.com>
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
03f5b77cdaf0
[gaim-migrate @ 8693]
Olivier Blin <blino@users.sourceforge.net>
parents:
8011
diff
changeset
|
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); | |
| 8043 | 383 | js->chat_servers = g_list_append(NULL, g_strdup("conference.jabber.org")); |
| 7014 | 384 | js->user = jabber_id_new(gaim_account_get_username(account)); |
| 7322 | 385 | js->next_id = g_random_int(); |
| 5613 | 386 | |
| 7310 | 387 | if(!js->user) { |
| 388 | gaim_connection_error(gc, _("Invalid Jabber ID")); | |
| 389 | return; | |
| 390 | } | |
| 391 | ||
| 7147 | 392 | if(!js->user->resource) { |
| 393 | char *me; | |
| 394 | js->user->resource = g_strdup("Gaim"); | |
| 395 | if(!js->user->node) { | |
| 396 | js->user->node = js->user->domain; | |
| 397 | js->user->domain = g_strdup("jabber.org"); | |
| 398 | } | |
| 399 | me = g_strdup_printf("%s@%s/%s", js->user->node, js->user->domain, | |
| 400 | js->user->resource); | |
| 401 | gaim_account_set_username(account, me); | |
| 402 | g_free(me); | |
| 7145 | 403 | } |
| 404 | ||
| 7014 | 405 | server = connect_server[0] ? connect_server : js->user->domain; |
| 2086 | 406 | |
| 7014 | 407 | jabber_stream_set_state(js, JABBER_STREAM_CONNECTING); |
| 2956 | 408 | |
| 7630 | 409 | |
| 410 | if(gaim_account_get_bool(account, "old_ssl", FALSE)) { | |
| 411 | if(gaim_ssl_is_supported()) { | |
| 412 | js->gsc = gaim_ssl_connect(account, server, | |
| 413 | gaim_account_get_int(account, "port", 5222), | |
| 414 | jabber_login_callback_ssl, jabber_ssl_connect_failure, gc); | |
| 415 | } else { | |
| 416 | gaim_connection_error(gc, _("SSL support unavailable")); | |
| 417 | } | |
| 3311 | 418 | } |
| 3770 | 419 | |
| 7014 | 420 | if(!js->gsc) { |
| 421 | rc = gaim_proxy_connect(account, server, | |
| 422 | gaim_account_get_int(account, "port", 5222), | |
| 423 | jabber_login_callback, gc); | |
| 2086 | 424 | |
| 7014 | 425 | if (rc != 0) |
| 426 | gaim_connection_error(gc, _("Unable to create socket")); | |
| 2956 | 427 | } |
| 2086 | 428 | } |
| 429 | ||
| 7072 | 430 | static gboolean |
| 431 | conn_close_cb(gpointer data) | |
| 432 | { | |
| 433 | JabberStream *js = data; | |
| 434 | gaim_connection_destroy(js->gc); | |
| 435 | return FALSE; | |
| 436 | } | |
| 437 | ||
| 438 | static void | |
| 439 | jabber_connection_schedule_close(JabberStream *js) | |
| 440 | { | |
| 441 | g_timeout_add(0, conn_close_cb, js); | |
| 442 | } | |
| 443 | ||
| 444 | static void | |
| 7395 | 445 | jabber_registration_result_cb(JabberStream *js, xmlnode *packet, gpointer data) |
| 7072 | 446 | { |
| 447 | const char *type = xmlnode_get_attrib(packet, "type"); | |
| 448 | char *buf; | |
| 449 | ||
| 450 | if(!strcmp(type, "result")) { | |
| 451 | buf = g_strdup_printf(_("Registration of %s@%s successful"), | |
| 452 | js->user->node, js->user->domain); | |
| 453 | gaim_notify_info(NULL, _("Registration Successful"), | |
| 454 | _("Registration Successful"), buf); | |
| 455 | g_free(buf); | |
| 456 | } else { | |
| 457 | char *error; | |
| 458 | xmlnode *y; | |
| 459 | ||
| 460 | if((y = xmlnode_get_child(packet, "error"))) { | |
| 461 | error = xmlnode_get_data(y); | |
| 462 | } else { | |
| 463 | error = g_strdup(_("Unknown Error")); | |
| 464 | } | |
| 465 | ||
| 466 | buf = g_strdup_printf(_("Registration of %s@%s failed: %s"), | |
| 467 | js->user->node, js->user->domain, error); | |
| 468 | gaim_notify_error(NULL, _("Registration Failed"), | |
| 469 | _("Registration Failed"), buf); | |
| 470 | g_free(buf); | |
| 471 | g_free(error); | |
| 472 | } | |
| 473 | jabber_connection_schedule_close(js); | |
| 474 | } | |
| 475 | ||
| 476 | static void | |
| 477 | jabber_register_cb(JabberStream *js, GaimRequestFields *fields) | |
| 478 | { | |
| 479 | GList *groups, *flds; | |
| 480 | xmlnode *query, *y; | |
| 481 | JabberIq *iq; | |
| 7264 | 482 | char *username; |
| 7072 | 483 | |
| 484 | iq = jabber_iq_new_query(js, JABBER_IQ_SET, "jabber:iq:register"); | |
| 485 | query = xmlnode_get_child(iq->node, "query"); | |
| 486 | ||
| 487 | for(groups = gaim_request_fields_get_groups(fields); groups; | |
| 488 | groups = groups->next) { | |
| 489 | for(flds = gaim_request_field_group_get_fields(groups->data); | |
| 490 | flds; flds = flds->next) { | |
| 491 | GaimRequestField *field = flds->data; | |
| 492 | const char *id = gaim_request_field_get_id(field); | |
| 493 | const char *value = gaim_request_field_string_get_value(field); | |
| 494 | ||
| 495 | if(!strcmp(id, "username")) { | |
| 496 | y = xmlnode_new_child(query, "username"); | |
| 497 | } else if(!strcmp(id, "password")) { | |
| 498 | y = xmlnode_new_child(query, "password"); | |
| 499 | } else if(!strcmp(id, "name")) { | |
| 500 | y = xmlnode_new_child(query, "name"); | |
| 501 | } else if(!strcmp(id, "email")) { | |
| 502 | y = xmlnode_new_child(query, "email"); | |
| 503 | } else if(!strcmp(id, "nick")) { | |
| 504 | y = xmlnode_new_child(query, "nick"); | |
| 505 | } else if(!strcmp(id, "first")) { | |
| 506 | y = xmlnode_new_child(query, "first"); | |
| 507 | } else if(!strcmp(id, "last")) { | |
| 508 | y = xmlnode_new_child(query, "last"); | |
| 509 | } else if(!strcmp(id, "address")) { | |
| 510 | y = xmlnode_new_child(query, "address"); | |
| 511 | } else if(!strcmp(id, "city")) { | |
| 512 | y = xmlnode_new_child(query, "city"); | |
| 513 | } else if(!strcmp(id, "state")) { | |
| 514 | y = xmlnode_new_child(query, "state"); | |
| 515 | } else if(!strcmp(id, "zip")) { | |
| 516 | y = xmlnode_new_child(query, "zip"); | |
| 517 | } else if(!strcmp(id, "phone")) { | |
| 518 | y = xmlnode_new_child(query, "phone"); | |
| 519 | } else if(!strcmp(id, "url")) { | |
| 520 | y = xmlnode_new_child(query, "url"); | |
| 521 | } else if(!strcmp(id, "date")) { | |
| 522 | y = xmlnode_new_child(query, "date"); | |
| 523 | } else { | |
| 524 | continue; | |
| 525 | } | |
| 526 | xmlnode_insert_data(y, value, -1); | |
| 7264 | 527 | if(!strcmp(id, "username")) { |
| 528 | if(js->user->node) | |
| 529 | g_free(js->user->node); | |
| 530 | js->user->node = g_strdup(value); | |
| 531 | } | |
| 7072 | 532 | } |
| 533 | } | |
| 534 | ||
| 7264 | 535 | username = g_strdup_printf("%s@%s/%s", js->user->node, js->user->domain, |
| 536 | js->user->resource); | |
| 537 | gaim_account_set_username(js->gc->account, username); | |
| 538 | g_free(username); | |
| 539 | ||
| 7395 | 540 | jabber_iq_set_callback(iq, jabber_registration_result_cb, NULL); |
| 7072 | 541 | |
| 542 | jabber_iq_send(iq); | |
| 543 | ||
| 544 | } | |
| 545 | ||
| 546 | static void | |
| 547 | jabber_register_cancel_cb(JabberStream *js, GaimRequestFields *fields) | |
| 548 | { | |
| 549 | jabber_connection_schedule_close(js); | |
| 550 | } | |
| 551 | ||
| 7923 | 552 | static void jabber_register_x_data_cb(JabberStream *js, xmlnode *result, gpointer data) |
| 553 | { | |
| 554 | xmlnode *query; | |
| 555 | JabberIq *iq; | |
| 556 | ||
| 557 | iq = jabber_iq_new_query(js, JABBER_IQ_SET, "jabber:iq:register"); | |
| 558 | query = xmlnode_get_child(iq->node, "query"); | |
| 559 | ||
| 560 | xmlnode_insert_child(query, result); | |
| 561 | ||
| 562 | jabber_iq_set_callback(iq, jabber_registration_result_cb, NULL); | |
| 563 | jabber_iq_send(iq); | |
| 564 | } | |
| 565 | ||
| 7072 | 566 | void jabber_register_parse(JabberStream *js, xmlnode *packet) |
| 567 | { | |
| 568 | if(js->registration) { | |
| 569 | GaimRequestFields *fields; | |
| 570 | GaimRequestFieldGroup *group; | |
| 571 | GaimRequestField *field; | |
| 7923 | 572 | xmlnode *query, *x, *y; |
| 7072 | 573 | char *instructions; |
| 574 | ||
| 575 | /* get rid of the login thingy */ | |
| 576 | gaim_connection_set_state(js->gc, GAIM_CONNECTED); | |
| 577 | ||
| 578 | query = xmlnode_get_child(packet, "query"); | |
| 579 | ||
| 580 | if(xmlnode_get_child(query, "registered")) { | |
| 581 | gaim_notify_error(NULL, _("Already Registered"), | |
| 582 | _("Already Registered"), NULL); | |
| 583 | jabber_connection_schedule_close(js); | |
| 584 | return; | |
| 585 | } | |
| 586 | ||
| 7923 | 587 | for(x = packet->child; x; x = x->next) { |
| 588 | const char *xmlns; | |
| 8010 | 589 | if(x->type != NODE_TYPE_TAG || strcmp(x->name, "x")) |
| 7923 | 590 | continue; |
| 591 | ||
| 592 | if(!(xmlns = xmlnode_get_attrib(x, "xmlns"))) | |
| 593 | continue; | |
| 594 | ||
| 595 | if(!strcmp(xmlns, "jabber:x:data")) { | |
| 596 | jabber_x_data_request(js, x, jabber_register_x_data_cb, NULL); | |
| 597 | return; | |
| 598 | } | |
| 599 | } | |
| 600 | ||
| 601 | /* XXX: if no jabber:x:data, but jabber:x:oob is there, use that */ | |
| 602 | ||
| 603 | /* as a last resort, use the old jabber:iq:register syntax */ | |
| 604 | ||
| 7072 | 605 | fields = gaim_request_fields_new(); |
| 606 | group = gaim_request_field_group_new(NULL); | |
| 607 | gaim_request_fields_add_group(fields, group); | |
| 608 | ||
| 609 | field = gaim_request_field_string_new("username", _("Username"), | |
| 610 | js->user->node, FALSE); | |
| 611 | gaim_request_field_group_add_field(group, field); | |
| 612 | ||
| 613 | field = gaim_request_field_string_new("password", _("Password"), | |
| 614 | gaim_account_get_password(js->gc->account), FALSE); | |
| 615 | gaim_request_field_string_set_masked(field, TRUE); | |
| 616 | gaim_request_field_group_add_field(group, field); | |
| 617 | ||
| 618 | if(xmlnode_get_child(query, "name")) { | |
| 619 | field = gaim_request_field_string_new("name", _("Name"), | |
| 620 | gaim_account_get_alias(js->gc->account), FALSE); | |
| 621 | gaim_request_field_group_add_field(group, field); | |
| 622 | } | |
| 623 | if(xmlnode_get_child(query, "email")) { | |
| 624 | field = gaim_request_field_string_new("email", _("E-Mail"), | |
| 625 | NULL, FALSE); | |
| 626 | gaim_request_field_group_add_field(group, field); | |
| 627 | } | |
| 628 | if(xmlnode_get_child(query, "nick")) { | |
| 629 | field = gaim_request_field_string_new("nick", _("Nickname"), | |
| 630 | NULL, FALSE); | |
| 631 | gaim_request_field_group_add_field(group, field); | |
| 632 | } | |
| 633 | if(xmlnode_get_child(query, "first")) { | |
| 634 | field = gaim_request_field_string_new("first", _("First Name"), | |
| 635 | NULL, FALSE); | |
| 636 | gaim_request_field_group_add_field(group, field); | |
| 637 | } | |
| 638 | if(xmlnode_get_child(query, "last")) { | |
| 639 | field = gaim_request_field_string_new("last", _("Last Name"), | |
| 640 | NULL, FALSE); | |
| 641 | gaim_request_field_group_add_field(group, field); | |
| 642 | } | |
| 643 | if(xmlnode_get_child(query, "address")) { | |
| 644 | field = gaim_request_field_string_new("address", _("Address"), | |
| 645 | NULL, FALSE); | |
| 646 | gaim_request_field_group_add_field(group, field); | |
| 647 | } | |
| 648 | if(xmlnode_get_child(query, "city")) { | |
| 649 | field = gaim_request_field_string_new("city", _("City"), | |
| 650 | NULL, FALSE); | |
| 651 | gaim_request_field_group_add_field(group, field); | |
| 652 | } | |
| 653 | if(xmlnode_get_child(query, "state")) { | |
| 654 | field = gaim_request_field_string_new("state", _("State"), | |
| 655 | NULL, FALSE); | |
| 656 | gaim_request_field_group_add_field(group, field); | |
| 657 | } | |
| 658 | if(xmlnode_get_child(query, "zip")) { | |
| 659 | field = gaim_request_field_string_new("zip", _("Postal Code"), | |
| 660 | NULL, FALSE); | |
| 661 | gaim_request_field_group_add_field(group, field); | |
| 662 | } | |
| 663 | if(xmlnode_get_child(query, "phone")) { | |
| 664 | field = gaim_request_field_string_new("phone", _("Phone"), | |
| 665 | NULL, FALSE); | |
| 666 | gaim_request_field_group_add_field(group, field); | |
| 667 | } | |
| 668 | if(xmlnode_get_child(query, "url")) { | |
| 669 | field = gaim_request_field_string_new("url", _("URL"), | |
| 670 | NULL, FALSE); | |
| 671 | gaim_request_field_group_add_field(group, field); | |
| 672 | } | |
| 673 | if(xmlnode_get_child(query, "date")) { | |
| 674 | field = gaim_request_field_string_new("date", _("Date"), | |
| 675 | NULL, FALSE); | |
| 676 | gaim_request_field_group_add_field(group, field); | |
| 677 | } | |
| 678 | ||
| 679 | if((y = xmlnode_get_child(query, "instructions"))) | |
| 680 | instructions = xmlnode_get_data(y); | |
| 681 | else | |
| 682 | instructions = g_strdup(_("Please fill out the information below " | |
| 683 | "to register your new account.")); | |
| 684 | ||
| 685 | gaim_request_fields(js->gc, _("Register New Jabber Account"), | |
| 686 | _("Register New Jabber Account"), instructions, fields, | |
| 687 | _("Register"), G_CALLBACK(jabber_register_cb), | |
| 688 | _("Cancel"), G_CALLBACK(jabber_register_cancel_cb), js); | |
| 689 | } | |
| 690 | } | |
| 691 | ||
| 8016 | 692 | void jabber_register_start(JabberStream *js) |
| 7072 | 693 | { |
| 694 | JabberIq *iq; | |
| 695 | ||
| 696 | iq = jabber_iq_new_query(js, JABBER_IQ_GET, "jabber:iq:register"); | |
| 697 | jabber_iq_send(iq); | |
| 698 | } | |
| 699 | ||
| 700 | static void jabber_register_account(GaimAccount *account) | |
| 701 | { | |
| 702 | GaimConnection *gc = gaim_account_get_connection(account); | |
| 703 | JabberStream *js; | |
| 704 | const char *connect_server = gaim_account_get_string(account, | |
| 705 | "connect_server", ""); | |
| 706 | const char *server; | |
| 707 | int rc; | |
| 708 | ||
| 709 | js = gc->proto_data = g_new0(JabberStream, 1); | |
| 710 | js->gc = gc; | |
| 711 | js->registration = TRUE; | |
| 712 | js->callbacks = g_hash_table_new_full(g_str_hash, g_str_equal, | |
| 7395 | 713 | g_free, g_free); |
| 7072 | 714 | js->user = jabber_id_new(gaim_account_get_username(account)); |
| 7322 | 715 | js->next_id = g_random_int(); |
| 7072 | 716 | |
| 7310 | 717 | if(!js->user) { |
| 718 | gaim_connection_error(gc, _("Invalid Jabber ID")); | |
| 719 | return; | |
| 720 | } | |
| 721 | ||
| 7147 | 722 | if(!js->user->resource) { |
| 723 | char *me; | |
| 724 | js->user->resource = g_strdup("Gaim"); | |
| 725 | if(!js->user->node) { | |
| 726 | js->user->node = js->user->domain; | |
| 727 | js->user->domain = g_strdup("jabber.org"); | |
| 728 | } | |
| 729 | me = g_strdup_printf("%s@%s/%s", js->user->node, js->user->domain, | |
| 730 | js->user->resource); | |
| 731 | gaim_account_set_username(account, me); | |
| 732 | g_free(me); | |
| 733 | } | |
| 734 | ||
| 7072 | 735 | server = connect_server[0] ? connect_server : js->user->domain; |
| 736 | ||
| 737 | jabber_stream_set_state(js, JABBER_STREAM_CONNECTING); | |
| 738 | ||
| 7630 | 739 | if(gaim_account_get_bool(account, "old_ssl", FALSE)) { |
| 740 | if(gaim_ssl_is_supported()) { | |
| 741 | js->gsc = gaim_ssl_connect(account, server, | |
| 742 | gaim_account_get_int(account, "port", 5222), | |
| 743 | jabber_login_callback_ssl, jabber_ssl_connect_failure, gc); | |
| 744 | } else { | |
| 745 | gaim_connection_error(gc, _("SSL support unavailable")); | |
| 746 | } | |
| 7072 | 747 | } |
| 748 | ||
| 749 | if(!js->gsc) { | |
| 750 | rc = gaim_proxy_connect(account, server, | |
| 751 | gaim_account_get_int(account, "port", 5222), | |
| 752 | jabber_login_callback, gc); | |
| 753 | ||
| 754 | if (rc != 0) | |
| 755 | gaim_connection_error(gc, _("Unable to create socket")); | |
| 756 | } | |
| 757 | } | |
| 758 | ||
| 5572 | 759 | static void jabber_close(GaimConnection *gc) |
| 2086 | 760 | { |
| 7014 | 761 | JabberStream *js = gc->proto_data; |
| 2956 | 762 | |
| 7642 | 763 | jabber_send_raw(js, "</stream:stream>", -1); |
| 3311 | 764 | |
| 7014 | 765 | if(js->gsc) { |
| 766 | gaim_ssl_close(js->gsc); | |
| 767 | } else { | |
| 7072 | 768 | if(js->gc->inpa) |
| 769 | gaim_input_remove(js->gc->inpa); | |
| 7014 | 770 | close(js->fd); |
| 771 | } | |
| 3311 | 772 | |
| 7587 | 773 | if(js->context) |
| 774 | g_markup_parse_context_free(js->context); | |
| 7072 | 775 | if(js->callbacks) |
| 776 | g_hash_table_destroy(js->callbacks); | |
| 777 | if(js->buddies) | |
| 778 | g_hash_table_destroy(js->buddies); | |
| 779 | if(js->chats) | |
| 780 | g_hash_table_destroy(js->chats); | |
| 8043 | 781 | while(js->chat_servers) { |
| 782 | g_free(js->chat_servers->data); | |
| 783 | js->chat_servers = g_list_delete_link(js->chat_servers, js->chat_servers); | |
| 784 | } | |
| 7014 | 785 | if(js->stream_id) |
| 786 | g_free(js->stream_id); | |
| 7587 | 787 | if(js->user) |
| 788 | jabber_id_free(js->user); | |
| 7014 | 789 | g_free(js); |
| 5093 | 790 | } |
| 791 | ||
| 7014 | 792 | void jabber_stream_set_state(JabberStream *js, JabberStreamState state) |
|
3105
8c23b0ec1036
[gaim-migrate @ 3119]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3074
diff
changeset
|
793 | { |
| 7014 | 794 | js->state = state; |
| 795 | switch(state) { | |
| 796 | case JABBER_STREAM_OFFLINE: | |
| 797 | break; | |
| 798 | case JABBER_STREAM_CONNECTING: | |
| 799 | gaim_connection_update_progress(js->gc, _("Connecting"), 1, | |
| 800 | JABBER_CONNECT_STEPS); | |
| 801 | break; | |
| 802 | case JABBER_STREAM_INITIALIZING: | |
| 803 | gaim_connection_update_progress(js->gc, _("Initializing Stream"), | |
| 804 | js->gsc ? 5 : 2, JABBER_CONNECT_STEPS); | |
| 805 | jabber_stream_init(js); | |
| 806 | jabber_parser_setup(js); | |
| 807 | break; | |
| 808 | case JABBER_STREAM_AUTHENTICATING: | |
| 809 | gaim_connection_update_progress(js->gc, _("Authenticating"), | |
| 810 | js->gsc ? 6 : 3, JABBER_CONNECT_STEPS); | |
| 8016 | 811 | if(js->protocol_version == JABBER_PROTO_0_9) { |
| 812 | if(js->registration) | |
| 813 | jabber_register_start(js); | |
| 814 | else | |
| 815 | jabber_auth_start_old(js); | |
| 816 | } | |
| 7014 | 817 | break; |
| 818 | case JABBER_STREAM_REINITIALIZING: | |
| 819 | gaim_connection_update_progress(js->gc, _("Re-initializing Stream"), | |
| 820 | 6, JABBER_CONNECT_STEPS); | |
| 821 | jabber_stream_init(js); | |
| 822 | break; | |
| 823 | case JABBER_STREAM_CONNECTED: | |
| 824 | gaim_connection_set_state(js->gc, GAIM_CONNECTED); | |
| 825 | jabber_roster_request(js); | |
| 826 | jabber_presence_send(js->gc, js->gc->away_state, js->gc->away); | |
| 8043 | 827 | jabber_iq_disco_server(js); |
| 7014 | 828 | serv_finish_login(js->gc); |
| 829 | break; | |
|
3105
8c23b0ec1036
[gaim-migrate @ 3119]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3074
diff
changeset
|
830 | } |
|
8c23b0ec1036
[gaim-migrate @ 3119]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3074
diff
changeset
|
831 | } |
|
8c23b0ec1036
[gaim-migrate @ 3119]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3074
diff
changeset
|
832 | |
| 7014 | 833 | char *jabber_get_next_id(JabberStream *js) |
| 2086 | 834 | { |
| 7322 | 835 | return g_strdup_printf("gaim%x", js->next_id++); |
| 2086 | 836 | } |
| 837 | ||
| 7923 | 838 | |
| 839 | static void jabber_idle_set(GaimConnection *gc, int idle) | |
|
3340
7e59a209931d
[gaim-migrate @ 3359]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3337
diff
changeset
|
840 | { |
| 7014 | 841 | JabberStream *js = gc->proto_data; |
|
3340
7e59a209931d
[gaim-migrate @ 3359]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3337
diff
changeset
|
842 | |
| 7014 | 843 | js->idle = idle ? time(NULL) - idle : idle; |
|
3314
12fa45677717
[gaim-migrate @ 3332]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3311
diff
changeset
|
844 | } |
|
12fa45677717
[gaim-migrate @ 3332]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3311
diff
changeset
|
845 | |
| 6695 | 846 | static const char *jabber_list_icon(GaimAccount *a, GaimBuddy *b) |
| 2086 | 847 | { |
| 4687 | 848 | return "jabber"; |
| 849 | } | |
| 4916 | 850 | |
| 7014 | 851 | static void jabber_list_emblems(GaimBuddy *b, char **se, char **sw, |
| 852 | char **nw, char **ne) | |
| 4916 | 853 | { |
| 7014 | 854 | JabberStream *js; |
| 855 | JabberBuddy *jb; | |
| 856 | ||
| 857 | if(!b->account->gc) | |
| 858 | return; | |
| 859 | js = b->account->gc->proto_data; | |
| 860 | jb = jabber_buddy_find(js, b->name, FALSE); | |
| 5135 | 861 | |
| 862 | if(!GAIM_BUDDY_IS_ONLINE(b)) { | |
| 7014 | 863 | if(jb && jb->error_msg) |
| 4927 | 864 | *nw = "error"; |
| 5135 | 865 | |
| 7014 | 866 | if(jb && (jb->subscription & JABBER_SUB_PENDING || |
| 867 | !(jb->subscription & JABBER_SUB_TO))) | |
| 5135 | 868 | *se = "notauthorized"; |
| 869 | else | |
| 870 | *se = "offline"; | |
| 4916 | 871 | } else { |
| 872 | switch (b->uc) { | |
| 7014 | 873 | case JABBER_STATE_AWAY: |
| 874 | *se = "away"; | |
| 875 | break; | |
| 876 | case JABBER_STATE_CHAT: | |
| 877 | *se = "chat"; | |
| 878 | break; | |
| 879 | case JABBER_STATE_XA: | |
| 880 | *se = "extendedaway"; | |
| 881 | break; | |
| 882 | case JABBER_STATE_DND: | |
| 883 | *se = "extendedaway"; | |
| 884 | break; | |
| 885 | case JABBER_STATE_ERROR: | |
| 886 | *se = "error"; | |
| 887 | break; | |
| 4916 | 888 | } |
| 2086 | 889 | } |
| 4916 | 890 | } |
| 2086 | 891 | |
| 7014 | 892 | static char *jabber_status_text(GaimBuddy *b) |
|
2205
68c42ce8eba6
[gaim-migrate @ 2215]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2170
diff
changeset
|
893 | { |
| 7014 | 894 | JabberBuddy *jb = jabber_buddy_find(b->account->gc->proto_data, b->name, |
| 895 | FALSE); | |
| 896 | char *ret = NULL; | |
| 5234 | 897 | |
| 7014 | 898 | if(jb && !GAIM_BUDDY_IS_ONLINE(b) && (jb->subscription & JABBER_SUB_PENDING || !(jb->subscription & JABBER_SUB_TO))) { |
| 899 | ret = g_strdup(_("Not Authorized")); | |
| 900 | } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && jb->error_msg) { | |
| 901 | ret = g_strdup(jb->error_msg); | |
| 2956 | 902 | } else { |
|
7095
17d2b54254f8
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
903 | char *stripped; |
|
17d2b54254f8
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
904 | |
|
17d2b54254f8
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
905 | stripped = gaim_markup_strip_html(jabber_buddy_get_status_msg(jb)); |
| 2956 | 906 | |
| 7014 | 907 | if(!stripped && b->uc & UC_UNAVAILABLE) |
| 908 | stripped = g_strdup(jabber_get_state_string(b->uc)); | |
| 2086 | 909 | |
| 7014 | 910 | if(stripped) { |
| 911 | ret = g_markup_escape_text(stripped, -1); | |
| 912 | g_free(stripped); | |
| 913 | } | |
| 2086 | 914 | } |
| 915 | ||
| 7014 | 916 | return ret; |
| 2956 | 917 | } |
| 918 | ||
| 6695 | 919 | static char *jabber_tooltip_text(GaimBuddy *b) |
| 4744 | 920 | { |
| 7014 | 921 | JabberBuddy *jb = jabber_buddy_find(b->account->gc->proto_data, b->name, |
| 922 | FALSE); | |
| 923 | JabberBuddyResource *jbr = jabber_buddy_find_resource(jb, NULL); | |
| 5135 | 924 | char *ret = NULL; |
| 7014 | 925 | |
| 926 | if(jbr) { | |
| 4777 | 927 | char *text = NULL; |
| 7014 | 928 | if(jbr->status) { |
| 929 | char *stripped; | |
|
7095
17d2b54254f8
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7072
diff
changeset
|
930 | stripped = gaim_markup_strip_html(jbr->status); |
| 7014 | 931 | text = g_markup_escape_text(stripped, -1); |
| 932 | g_free(stripped); | |
| 933 | } | |
| 934 | ||
|
5236
d0667c1c18b2
[gaim-migrate @ 5606]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
5234
diff
changeset
|
935 | ret = g_strdup_printf("<b>%s:</b> %s%s%s", |
|
d0667c1c18b2
[gaim-migrate @ 5606]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
5234
diff
changeset
|
936 | _("Status"), |
| 7014 | 937 | jabber_get_state_string(jbr->state), |
| 938 | text ? ": " : "", | |
| 4745 | 939 | text ? text : ""); |
| 7014 | 940 | if(text) |
| 4745 | 941 | g_free(text); |
| 7014 | 942 | } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && jb->error_msg) { |
| 943 | ret = g_strdup_printf("<b>%s:</b> %s", | |
| 944 | _("Error"), jb->error_msg); | |
| 945 | } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && | |
| 946 | (jb->subscription & JABBER_SUB_PENDING || | |
| 947 | !(jb->subscription & JABBER_SUB_TO))) { | |
| 948 | ret = g_strdup_printf("<b>%s:</b> %s", | |
| 949 | _("Status"), _("Not Authorized")); | |
| 4745 | 950 | } |
| 4744 | 951 | |
| 5135 | 952 | return ret; |
| 4732 | 953 | } |
| 954 | ||
| 7014 | 955 | static GList *jabber_away_states(GaimConnection *gc) |
| 956 | { | |
| 2086 | 957 | GList *m = NULL; |
| 958 | ||
| 4982 | 959 | m = g_list_append(m, _("Online")); |
| 960 | m = g_list_append(m, _("Chatty")); | |
| 961 | m = g_list_append(m, _("Away")); | |
| 962 | m = g_list_append(m, _("Extended Away")); | |
| 963 | m = g_list_append(m, _("Do Not Disturb")); | |
| 964 | m = g_list_append(m, _("Invisible")); | |
|
4110
481c7ea9e258
[gaim-migrate @ 4325]
Robert McQueen <robot101@debian.org>
parents:
4074
diff
changeset
|
965 | m = g_list_append(m, GAIM_AWAY_CUSTOM); |
| 2086 | 966 | |
| 967 | return m; | |
| 968 | } | |
| 969 | ||
| 7395 | 970 | static void |
| 971 | jabber_password_change_result_cb(JabberStream *js, xmlnode *packet, | |
| 972 | gpointer data) | |
| 7124 | 973 | { |
| 974 | const char *type; | |
| 975 | ||
| 976 | type = xmlnode_get_attrib(packet, "type"); | |
| 977 | ||
| 978 | if(!strcmp(type, "result")) { | |
| 979 | gaim_notify_info(js->gc, _("Password Changed"), _("Password Changed"), | |
| 980 | _("Your password has been changed.")); | |
| 981 | } else { | |
| 982 | xmlnode *error; | |
| 983 | char *buf, *error_txt = NULL; | |
| 984 | ||
| 985 | ||
| 986 | if((error = xmlnode_get_child(packet, "error"))) | |
| 987 | error_txt = xmlnode_get_data(error); | |
| 988 | ||
| 989 | if(error_txt) { | |
| 990 | buf = g_strdup_printf(_("Error changing password: %s"), | |
| 991 | error_txt); | |
| 992 | g_free(error_txt); | |
| 993 | } else { | |
| 994 | buf = g_strdup(_("Unknown error occurred changing password")); | |
| 995 | } | |
| 996 | ||
| 997 | gaim_notify_error(js->gc, _("Error"), _("Error"), buf); | |
| 998 | g_free(buf); | |
| 999 | } | |
| 1000 | } | |
| 1001 | ||
| 1002 | static void jabber_password_change_cb(JabberStream *js, | |
| 1003 | GaimRequestFields *fields) | |
| 1004 | { | |
| 1005 | const char *p1, *p2; | |
| 1006 | JabberIq *iq; | |
| 1007 | xmlnode *query, *y; | |
| 1008 | ||
| 1009 | p1 = gaim_request_fields_get_string(fields, "password1"); | |
| 1010 | p2 = gaim_request_fields_get_string(fields, "password2"); | |
| 1011 | ||
| 1012 | if(strcmp(p1, p2)) { | |
| 1013 | gaim_notify_error(js->gc, NULL, _("New passwords do not match."), NULL); | |
| 1014 | return; | |
| 1015 | } | |
| 1016 | ||
| 1017 | iq = jabber_iq_new_query(js, JABBER_IQ_SET, "jabber:iq:register"); | |
| 1018 | ||
| 1019 | xmlnode_set_attrib(iq->node, "to", js->user->domain); | |
| 1020 | ||
| 1021 | query = xmlnode_get_child(iq->node, "query"); | |
| 1022 | ||
| 1023 | y = xmlnode_new_child(query, "username"); | |
| 1024 | xmlnode_insert_data(y, js->user->node, -1); | |
| 1025 | y = xmlnode_new_child(query, "password"); | |
| 1026 | xmlnode_insert_data(y, p1, -1); | |
| 1027 | ||
| 7395 | 1028 | jabber_iq_set_callback(iq, jabber_password_change_result_cb, NULL); |
| 7124 | 1029 | |
| 1030 | jabber_iq_send(iq); | |
| 1031 | ||
| 1032 | gaim_account_set_password(js->gc->account, p1); | |
| 1033 | } | |
| 1034 | ||
| 1035 | static void jabber_password_change(GaimConnection *gc) | |
| 1036 | { | |
| 1037 | JabberStream *js = gc->proto_data; | |
| 1038 | GaimRequestFields *fields; | |
| 1039 | GaimRequestFieldGroup *group; | |
| 1040 | GaimRequestField *field; | |
| 1041 | ||
| 1042 | fields = gaim_request_fields_new(); | |
| 1043 | group = gaim_request_field_group_new(NULL); | |
| 1044 | gaim_request_fields_add_group(fields, group); | |
| 1045 | ||
| 1046 | field = gaim_request_field_string_new("password1", _("Password"), | |
| 1047 | "", FALSE); | |
| 1048 | gaim_request_field_string_set_masked(field, TRUE); | |
| 1049 | gaim_request_field_group_add_field(group, field); | |
| 1050 | ||
| 1051 | field = gaim_request_field_string_new("password2", _("Password (again)"), | |
| 1052 | "", FALSE); | |
| 1053 | gaim_request_field_string_set_masked(field, TRUE); | |
| 1054 | gaim_request_field_group_add_field(group, field); | |
| 1055 | ||
| 1056 | gaim_request_fields(js->gc, _("Change Jabber Password"), | |
| 1057 | _("Change Jabber Password"), _("Please enter your new password"), | |
| 1058 | fields, _("OK"), G_CALLBACK(jabber_password_change_cb), | |
| 1059 | _("Cancel"), NULL, js); | |
| 1060 | } | |
| 1061 | ||
| 5572 | 1062 | static GList *jabber_actions(GaimConnection *gc) |
| 2956 | 1063 | { |
| 7124 | 1064 | JabberStream *js = gc->proto_data; |
| 2956 | 1065 | GList *m = NULL; |
|
4333
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4316
diff
changeset
|
1066 | struct proto_actions_menu *pam; |
|
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4316
diff
changeset
|
1067 | |
|
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4316
diff
changeset
|
1068 | pam = g_new0(struct proto_actions_menu, 1); |
|
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4316
diff
changeset
|
1069 | pam->label = _("Set User Info"); |
|
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4316
diff
changeset
|
1070 | pam->callback = jabber_setup_set_info; |
|
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4316
diff
changeset
|
1071 | pam->gc = gc; |
|
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4316
diff
changeset
|
1072 | m = g_list_append(m, pam); |
|
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4316
diff
changeset
|
1073 | |
| 7124 | 1074 | if(js->protocol_version == JABBER_PROTO_0_9) { |
| 1075 | pam = g_new0(struct proto_actions_menu, 1); | |
| 1076 | pam->label = _("Change Password"); | |
| 1077 | pam->callback = jabber_password_change; | |
| 1078 | pam->gc = gc; | |
| 1079 | m = g_list_append(m, pam); | |
| 1080 | } | |
| 2956 | 1081 | |
| 1082 | return m; | |
| 1083 | } | |
| 1084 | ||
| 7999 | 1085 | static GaimChat *jabber_find_blist_chat(GaimAccount *account, const char *name) |
| 1086 | { | |
| 1087 | GaimBlistNode *gnode, *cnode; | |
| 1088 | JabberID *jid; | |
| 1089 | ||
| 1090 | if(!(jid = jabber_id_new(name))) | |
| 1091 | return NULL; | |
| 1092 | ||
| 1093 | for(gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { | |
| 1094 | for(cnode = gnode->child; cnode; cnode = cnode->next) { | |
| 1095 | GaimChat *chat = (GaimChat*)cnode; | |
| 1096 | const char *room, *server; | |
| 1097 | if(!GAIM_BLIST_NODE_IS_CHAT(cnode)) | |
| 1098 | continue; | |
| 1099 | ||
| 1100 | if(chat->account != account) | |
| 8011 | 1101 | continue; |
| 7999 | 1102 | |
| 1103 | if(!(room = g_hash_table_lookup(chat->components, "room"))) | |
| 1104 | continue; | |
| 1105 | if(!(server = g_hash_table_lookup(chat->components, "server"))) | |
| 1106 | continue; | |
| 1107 | ||
| 1108 | if(!g_utf8_collate(room, jid->node) && !g_utf8_collate(server, jid->domain)) { | |
| 1109 | jabber_id_free(jid); | |
| 1110 | return chat; | |
| 1111 | } | |
| 1112 | } | |
| 1113 | } | |
| 1114 | jabber_id_free(jid); | |
| 1115 | return NULL; | |
| 1116 | } | |
| 1117 | ||
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1118 | static GaimPluginProtocolInfo prpl_info = |
| 2086 | 1119 | { |
| 7014 | 1120 | OPT_PROTO_CHAT_TOPIC | OPT_PROTO_UNIQUE_CHATNAME, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1121 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1122 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1123 | jabber_list_icon, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1124 | jabber_list_emblems, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1125 | jabber_status_text, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1126 | jabber_tooltip_text, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1127 | jabber_away_states, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1128 | jabber_actions, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1129 | jabber_buddy_menu, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1130 | jabber_chat_info, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1131 | jabber_login, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1132 | jabber_close, |
| 7014 | 1133 | jabber_message_send_im, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1134 | jabber_set_info, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1135 | jabber_send_typing, |
| 7014 | 1136 | jabber_buddy_get_info, |
| 1137 | jabber_presence_send, | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1138 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1139 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1140 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1141 | NULL, |
| 7014 | 1142 | jabber_idle_set, |
| 7514 | 1143 | NULL, |
| 7014 | 1144 | jabber_roster_add_buddy, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1145 | NULL, |
| 7014 | 1146 | jabber_roster_remove_buddy, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1147 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1148 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1149 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1150 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1151 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1152 | NULL, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1153 | NULL, |
| 7014 | 1154 | jabber_chat_join, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1155 | jabber_chat_invite, |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1156 | jabber_chat_leave, |
| 7400 | 1157 | NULL, |
| 7014 | 1158 | jabber_message_send_chat, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1159 | jabber_keepalive, |
| 7072 | 1160 | jabber_register_account, |
| 7014 | 1161 | jabber_buddy_get_info_chat, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1162 | NULL, |
| 7014 | 1163 | jabber_roster_alias_change, |
| 1164 | jabber_roster_group_change, | |
| 1165 | jabber_roster_group_rename, | |
| 1166 | NULL, | |
| 1167 | NULL, /* convo_closed */ /* XXX: thread_ids */ | |
| 7398 | 1168 | jabber_normalize, |
| 1169 | NULL, /* set_buddy_icon */ | |
| 1170 | NULL, /* remove_group */ | |
| 7971 | 1171 | jabber_chat_buddy_real_name, |
| 7999 | 1172 | jabber_chat_set_topic, |
| 1173 | jabber_find_blist_chat | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1174 | }; |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1175 | |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1176 | static GaimPluginInfo info = |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1177 | { |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1178 | 2, /**< api_version */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1179 | GAIM_PLUGIN_PROTOCOL, /**< type */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1180 | NULL, /**< ui_requirement */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1181 | 0, /**< flags */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1182 | NULL, /**< dependencies */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1183 | GAIM_PRIORITY_DEFAULT, /**< priority */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1184 | |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1185 | "prpl-jabber", /**< id */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1186 | "Jabber", /**< name */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1187 | VERSION, /**< version */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1188 | /** summary */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1189 | N_("Jabber Protocol Plugin"), |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1190 | /** description */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1191 | N_("Jabber Protocol Plugin"), |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1192 | NULL, /**< author */ |
|
6371
e92b66ee5518
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
1193 | GAIM_WEBSITE, /**< homepage */ |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1194 | |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1195 | NULL, /**< load */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1196 | NULL, /**< unload */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1197 | NULL, /**< destroy */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1198 | |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1199 | NULL, /**< ui_info */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1200 | &prpl_info /**< extra_info */ |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1201 | }; |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1202 | |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1203 | static void |
|
5920
963bfdefee02
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
1204 | init_plugin(GaimPlugin *plugin) |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1205 | { |
|
5638
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1206 | GaimAccountUserSplit *split; |
|
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1207 | GaimAccountOption *option; |
|
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1208 | |
|
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1209 | split = gaim_account_user_split_new(_("Server"), "jabber.org", '@'); |
|
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1210 | prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
|
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1211 | |
|
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1212 | split = gaim_account_user_split_new(_("Resource"), "Gaim", '/'); |
|
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1213 | prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
|
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1214 | |
| 7630 | 1215 | option = gaim_account_option_bool_new(_("Use TLS if available"), "use_tls", |
| 1216 | TRUE); | |
| 1217 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
| 1218 | option); | |
| 1219 | ||
| 1220 | option = gaim_account_option_bool_new(_("Force old SSL"), "old_ssl", FALSE); | |
| 7124 | 1221 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| 1222 | option); | |
| 6764 | 1223 | |
| 8086 | 1224 | option = gaim_account_option_bool_new( |
| 1225 | _("Allow plaintext auth over unencrypted streams"), | |
| 1226 | "auth_plain_in_clear", FALSE); | |
| 1227 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
| 1228 | option); | |
| 1229 | ||
| 7014 | 1230 | option = gaim_account_option_int_new(_("Port"), "port", 5222); |
|
5638
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1231 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| 7014 | 1232 | option); |
|
5638
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1233 | |
|
5685
2523e4143d74
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
1234 | option = gaim_account_option_string_new(_("Connect server"), |
| 7014 | 1235 | "connect_server", NULL); |
|
5638
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
1236 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| 7014 | 1237 | option); |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1238 | |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
1239 | my_protocol = plugin; |
| 7014 | 1240 | |
| 1241 | gaim_prefs_add_none("/plugins/prpl/jabber"); | |
| 1242 | gaim_prefs_add_bool("/plugins/prpl/jabber/hide_os", FALSE); | |
| 2086 | 1243 | } |
| 1244 | ||
|
5920
963bfdefee02
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
1245 | GAIM_INIT_PLUGIN(jabber, init_plugin, info); |