Mercurial > pidgin.yaz
annotate src/protocols/jabber/jabber.c @ 7019:3fd0aeb71f95
[gaim-migrate @ 7582]
jabber needs SSL as well
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Mon, 29 Sep 2003 15:56:14 +0000 |
parents | 67c4e9d39242 |
children | b40f12355812 |
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 /* |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
24 #include "conversation.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
25 #include "ft.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
26 #include "multi.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
27 #include "notify.h" |
7014 | 28 #include "proxy.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
29 #include "request.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
30 #include "util.h" |
7014 | 31 |
32 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
33 |
7014 | 34 #include "account.h" |
35 #include "accountopt.h" | |
36 #include "debug.h" | |
37 #include "html.h" | |
38 #include "message.h" | |
39 #include "multi.h" | |
40 #include "prpl.h" | |
41 #include "server.h" | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
42 |
7014 | 43 #include "auth.h" |
44 #include "buddy.h" | |
45 #include "chat.h" | |
46 #include "iq.h" | |
47 #include "jutil.h" | |
48 #include "message.h" | |
49 #include "parser.h" | |
50 #include "presence.h" | |
51 #include "jabber.h" | |
52 #include "roster.h" | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
53 |
7014 | 54 #define JABBER_CONNECT_STEPS (js->gsc ? 8 : 5) |
2086 | 55 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
56 static GaimPlugin *my_protocol = NULL; |
4249 | 57 |
7014 | 58 static void jabber_stream_init(JabberStream *js) |
59 { | |
60 char *open_stream; | |
3340 | 61 |
7014 | 62 open_stream = g_strdup_printf("<stream:stream to='%s' " |
63 "xmlns='jabber:client' " | |
64 "xmlns:stream='http://etherx.jabber.org/streams' " | |
65 "version='1.0'>", js->user->domain); | |
3311 | 66 |
7014 | 67 jabber_send_raw(js, open_stream); |
2086 | 68 |
7014 | 69 g_free(open_stream); |
2086 | 70 } |
71 | |
7014 | 72 static void jabber_session_initialized_cb(JabberStream *js, xmlnode *packet) |
3311 | 73 { |
7014 | 74 const char *type = xmlnode_get_attrib(packet, "type"); |
75 if(type && !strcmp(type, "result")) { | |
76 jabber_stream_set_state(js, JABBER_STREAM_CONNECTED); | |
77 } else { | |
78 gaim_connection_error(js->gc, _("Error initializing session")); | |
3311 | 79 } |
80 } | |
81 | |
7014 | 82 static void jabber_session_init(JabberStream *js) |
3311 | 83 { |
7014 | 84 JabberIq *iq = jabber_iq_new(js, JABBER_IQ_SET); |
85 xmlnode *session; | |
3311 | 86 |
7014 | 87 jabber_iq_set_callback(iq, jabber_session_initialized_cb); |
3311 | 88 |
7014 | 89 session = xmlnode_new_child(iq->node, "session"); |
90 xmlnode_set_attrib(session, "xmlns", "urn:ietf:params:xml:ns:xmpp-session"); | |
3311 | 91 |
7014 | 92 jabber_iq_send(iq); |
3311 | 93 } |
94 | |
7014 | 95 static void jabber_stream_handle_error(JabberStream *js, xmlnode *packet) |
3311 | 96 { |
7014 | 97 xmlnode *textnode; |
98 char *error_text = NULL; | |
99 const char *text; | |
100 char *buf; | |
3311 | 101 |
7014 | 102 if(xmlnode_get_child(packet, "bad-format")) { |
103 text = _("Bad Format"); | |
104 } else if(xmlnode_get_child(packet, "bad-namespace-prefix")) { | |
105 text = _("Bad Namespace Prefix"); | |
106 } else if(xmlnode_get_child(packet, "conflict")) { | |
107 js->gc->wants_to_die = TRUE; | |
108 text = _("Resource Conflict"); | |
109 } else if(xmlnode_get_child(packet, "connection-timeout")) { | |
110 text = _("Connection Timeout"); | |
111 } else if(xmlnode_get_child(packet, "host-gone")) { | |
112 text = _("Host Gone"); | |
113 } else if(xmlnode_get_child(packet, "host-unknown")) { | |
114 text = _("Host Unknown"); | |
115 } else if(xmlnode_get_child(packet, "improper-addressing")) { | |
116 text = _("Improper Addressing"); | |
117 } else if(xmlnode_get_child(packet, "internal-server-error")) { | |
118 text = _("Internal Server Error"); | |
119 } else if(xmlnode_get_child(packet, "invalid-id")) { | |
120 text = _("Invalid ID"); | |
121 } else if(xmlnode_get_child(packet, "invalid-namespace")) { | |
122 text = _("Invalid Namespace"); | |
123 } else if(xmlnode_get_child(packet, "invalid-xml")) { | |
124 text = _("Invalid XML"); | |
125 } else if(xmlnode_get_child(packet, "nonmatching-hosts")) { | |
126 text = _("Non-matching Hosts"); | |
127 } else if(xmlnode_get_child(packet, "not-authorized")) { | |
128 text = _("Not Authorized"); | |
129 } else if(xmlnode_get_child(packet, "policy-violation")) { | |
130 text = _("Policy Violation"); | |
131 } else if(xmlnode_get_child(packet, "remote-connection-failed")) { | |
132 text = _("Remote Connection Failed"); | |
133 } else if(xmlnode_get_child(packet, "resource-constraint")) { | |
134 text = _("Resource Constraint"); | |
135 } else if(xmlnode_get_child(packet, "restricted-xml")) { | |
136 text = _("Restricted XML"); | |
137 } else if(xmlnode_get_child(packet, "see-other-host")) { | |
138 text = _("See Other Host"); | |
139 } else if(xmlnode_get_child(packet, "system-shutdown")) { | |
140 text = _("System Shutdown"); | |
141 } else if(xmlnode_get_child(packet, "undefined-condition")) { | |
142 text = _("Undefined Condition"); | |
143 } else if(xmlnode_get_child(packet, "unsupported-encoding")) { | |
144 text = _("Unsupported Condition"); | |
145 } else if(xmlnode_get_child(packet, "unsupported-stanza-type")) { | |
146 text = _("Unsupported Stanza Type"); | |
147 } else if(xmlnode_get_child(packet, "unsupported-version")) { | |
148 text = _("Unsupported Version"); | |
149 } else if(xmlnode_get_child(packet, "xml-not-well-formed")) { | |
150 text = _("XML Not Well Formed"); | |
3311 | 151 } else { |
7014 | 152 text = _("Stream Error"); |
3311 | 153 } |
154 | |
7014 | 155 if((textnode = xmlnode_get_child(packet, "text"))) |
156 error_text = xmlnode_get_data(textnode); | |
2086 | 157 |
7014 | 158 buf = g_strdup_printf("%s%s%s", text, |
159 error_text ? ": " : "", | |
160 error_text ? error_text : ""); | |
161 gaim_connection_error(js->gc, buf); | |
162 g_free(buf); | |
163 if(error_text) | |
164 g_free(error_text); | |
2086 | 165 } |
166 | |
7014 | 167 static void tls_init(JabberStream *js); |
2086 | 168 |
7014 | 169 void jabber_process_packet(JabberStream *js, xmlnode *packet) |
2086 | 170 { |
7014 | 171 const char *id = xmlnode_get_attrib(packet, "id"); |
172 const char *type = xmlnode_get_attrib(packet, "type"); | |
173 JabberCallback *callback; | |
2086 | 174 |
7014 | 175 if(!strcmp(packet->name, "iq")) { |
176 if(type && (!strcmp(type, "result") || !strcmp(type, "error")) && id | |
177 && *id && (callback = g_hash_table_lookup(js->callbacks, id))) | |
178 callback(js, packet); | |
179 else | |
180 jabber_iq_parse(js, packet); | |
181 } else if(!strcmp(packet->name, "presence")) { | |
182 jabber_presence_parse(js, packet); | |
183 } else if(!strcmp(packet->name, "message")) { | |
184 jabber_message_parse(js, packet); | |
185 } else if(!strcmp(packet->name, "stream:features")) { | |
186 if(js->state == JABBER_STREAM_AUTHENTICATING) { | |
187 jabber_auth_start(js, packet); | |
188 } else if(js->state == JABBER_STREAM_REINITIALIZING) { | |
189 jabber_session_init(js); | |
190 } else { | |
191 gaim_debug(GAIM_DEBUG_WARNING, "jabber", | |
192 "Unexpected stream:features packet, ignoring\n", js->state); | |
6076 | 193 } |
7014 | 194 } else if(!strcmp(packet->name, "stream:error")) { |
195 jabber_stream_handle_error(js, packet); | |
196 } else if(!strcmp(packet->name, "challenge")) { | |
197 if(js->state == JABBER_STREAM_AUTHENTICATING) | |
198 jabber_auth_handle_challenge(js, packet); | |
199 } else if(!strcmp(packet->name, "success")) { | |
200 if(js->state == JABBER_STREAM_AUTHENTICATING) | |
201 jabber_auth_handle_success(js, packet); | |
202 } else if(!strcmp(packet->name, "failure")) { | |
203 if(js->state == JABBER_STREAM_AUTHENTICATING) | |
204 jabber_auth_handle_failure(js, packet); | |
205 } else if(!strcmp(packet->name, "proceed")) { | |
206 if(js->state == JABBER_STREAM_AUTHENTICATING && !js->gsc) | |
207 tls_init(js); | |
208 } else { | |
209 gaim_debug(GAIM_DEBUG_WARNING, "jabber", "Unknown packet: %s\n", | |
210 packet->name); | |
2086 | 211 } |
212 } | |
213 | |
7014 | 214 void jabber_send_raw(JabberStream *js, const char *data) |
2086 | 215 { |
7014 | 216 int ret; |
2086 | 217 |
7014 | 218 /* because printing a tab to debug every minute gets old */ |
219 if(strcmp(data, "\t")) | |
220 gaim_debug(GAIM_DEBUG_MISC, "jabber", "Sending%s: %s\n", | |
221 js->gsc ? " (ssl)" : "", data); | |
2086 | 222 |
7014 | 223 if(js->gsc) { |
224 ret = gaim_ssl_write(js->gsc, data, strlen(data)); | |
225 } else { | |
226 ret = write(js->fd, data, strlen(data)); | |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
227 } |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
228 |
7014 | 229 if(ret < 0) |
230 gaim_connection_error(js->gc, _("Write error")); | |
231 | |
2814
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
232 } |
f4f9e5a01890
[gaim-migrate @ 2827]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2800
diff
changeset
|
233 |
7014 | 234 void jabber_send(JabberStream *js, xmlnode *packet) |
2086 | 235 { |
7014 | 236 char *txt; |
2086 | 237 |
7014 | 238 txt = xmlnode_to_str(packet); |
239 jabber_send_raw(js, txt); | |
240 g_free(txt); | |
2086 | 241 } |
242 | |
7014 | 243 static void jabber_keepalive(GaimConnection *gc) |
2086 | 244 { |
7014 | 245 jabber_send_raw(gc->proto_data, "\t"); |
2086 | 246 } |
247 | |
7014 | 248 static void |
249 jabber_recv_cb_ssl(gpointer data, GaimSslConnection *gsc, | |
6764 | 250 GaimInputCondition cond) |
251 { | |
7014 | 252 GaimConnection *gc = data; |
253 JabberStream *js = gc->proto_data; | |
6764 | 254 int len; |
7014 | 255 static char buf[4096]; |
6768 | 256 |
7014 | 257 if(!g_list_find(gaim_connections_get_all(), gc)) { |
6768 | 258 gaim_ssl_close(gsc); |
259 return; | |
260 } | |
261 | |
7014 | 262 if((len = gaim_ssl_read(gsc, buf, sizeof(buf) - 1)) > 0) { |
6764 | 263 buf[len] = '\0'; |
7014 | 264 gaim_debug(GAIM_DEBUG_INFO, "jabber", "Recv (ssl)(%d): %s\n", len, buf); |
265 jabber_parser_process(js, buf, len); | |
2086 | 266 } |
267 } | |
268 | |
7014 | 269 static void |
270 jabber_recv_cb(gpointer data, gint source, GaimInputCondition condition) | |
2086 | 271 { |
5572 | 272 GaimConnection *gc = data; |
7014 | 273 JabberStream *js = gc->proto_data; |
274 int len; | |
275 static char buf[4096]; | |
2086 | 276 |
7014 | 277 if(!g_list_find(gaim_connections_get_all(), gc)) |
278 return; | |
2956 | 279 |
7014 | 280 if((len = read(js->fd, buf, sizeof(buf) - 1)) > 0) { |
281 buf[len] = '\0'; | |
282 gaim_debug(GAIM_DEBUG_INFO, "jabber", "Recv (%d): %s\n", len, buf); | |
283 jabber_parser_process(js, buf, len); | |
284 } | |
2086 | 285 } |
286 | |
7014 | 287 static void |
288 jabber_login_callback_ssl(gpointer data, GaimSslConnection *gsc, | |
6764 | 289 GaimInputCondition cond) |
290 { | |
291 GaimConnection *gc = data; | |
7014 | 292 JabberStream *js = gc->proto_data; |
6764 | 293 |
7014 | 294 if(!g_list_find(gaim_connections_get_all(), gc)) { |
6764 | 295 gaim_ssl_close(gsc); |
296 return; | |
297 } | |
298 | |
7014 | 299 js->gsc = gsc; |
6764 | 300 |
7014 | 301 if(js->state == JABBER_STREAM_CONNECTING) |
302 jabber_send_raw(js, "<?xml version='1.0' ?>"); | |
6764 | 303 |
7014 | 304 jabber_stream_set_state(js, JABBER_STREAM_INITIALIZING); |
305 gaim_ssl_input_add(gsc, jabber_recv_cb_ssl, gc); | |
6764 | 306 } |
307 | |
7014 | 308 |
309 static void | |
310 jabber_login_callback(gpointer data, gint source, GaimInputCondition cond) | |
6764 | 311 { |
5572 | 312 GaimConnection *gc = data; |
7014 | 313 JabberStream *js = gc->proto_data; |
2086 | 314 |
7014 | 315 if(!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 316 close(source); |
317 return; | |
318 } | |
319 | |
7014 | 320 js->fd = source; |
2956 | 321 |
7014 | 322 if(js->state == JABBER_STREAM_CONNECTING) |
323 jabber_send_raw(js, "<?xml version='1.0' ?>"); | |
2300
d2686f757d6e
[gaim-migrate @ 2310]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2289
diff
changeset
|
324 |
7014 | 325 jabber_stream_set_state(js, JABBER_STREAM_INITIALIZING); |
326 gc->inpa = gaim_input_add(js->fd, GAIM_INPUT_READ, jabber_recv_cb, gc); | |
327 } | |
2086 | 328 |
7014 | 329 static void tls_init(JabberStream *js) |
330 { | |
331 gaim_input_remove(js->gc->inpa); | |
332 js->gc->inpa = 0; | |
333 js->gsc = gaim_ssl_connect_fd(js->gc->account, js->fd, | |
334 jabber_login_callback_ssl, js->gc); | |
2086 | 335 } |
336 | |
7014 | 337 static void |
338 jabber_login(GaimAccount *account) | |
2086 | 339 { |
7014 | 340 int rc; |
341 GaimConnection *gc = gaim_account_get_connection(account); | |
342 const char *connect_server = gaim_account_get_string(account, | |
343 "connect_server", ""); | |
5572 | 344 const char *server; |
7014 | 345 JabberStream *js; |
2086 | 346 |
7014 | 347 gc->flags |= GAIM_CONNECTION_HTML; |
348 js = gc->proto_data = g_new0(JabberStream, 1); | |
349 js->gc = gc; | |
350 js->callbacks = g_hash_table_new_full(g_str_hash, g_str_equal, | |
351 g_free, NULL); | |
352 js->buddies = g_hash_table_new_full(g_str_hash, g_str_equal, | |
353 g_free, NULL); | |
354 js->chats = g_hash_table_new_full(g_str_hash, g_str_equal, | |
355 g_free, NULL); | |
356 js->user = jabber_id_new(gaim_account_get_username(account)); | |
5613 | 357 |
7014 | 358 server = connect_server[0] ? connect_server : js->user->domain; |
2086 | 359 |
7014 | 360 jabber_stream_set_state(js, JABBER_STREAM_CONNECTING); |
2956 | 361 |
6880 | 362 if(gaim_account_get_bool(account, "old_ssl", FALSE) |
6764 | 363 && gaim_ssl_is_supported()) { |
7014 | 364 js->gsc = gaim_ssl_connect(account, server, |
365 gaim_account_get_int(account, "port", 5222), | |
366 jabber_login_callback_ssl, gc); | |
3311 | 367 } |
3770 | 368 |
7014 | 369 if(!js->gsc) { |
370 rc = gaim_proxy_connect(account, server, | |
371 gaim_account_get_int(account, "port", 5222), | |
372 jabber_login_callback, gc); | |
2086 | 373 |
7014 | 374 if (rc != 0) |
375 gaim_connection_error(gc, _("Unable to create socket")); | |
2956 | 376 } |
2086 | 377 } |
378 | |
5572 | 379 static void jabber_close(GaimConnection *gc) |
2086 | 380 { |
7014 | 381 JabberStream *js = gc->proto_data; |
2956 | 382 |
7014 | 383 jabber_send_raw(js, "</stream:stream>"); |
3311 | 384 |
7014 | 385 if(js->gsc) { |
386 gaim_ssl_close(js->gsc); | |
387 } else { | |
388 close(js->fd); | |
389 } | |
3311 | 390 |
7014 | 391 g_markup_parse_context_free(js->context); |
5093 | 392 |
7014 | 393 g_hash_table_destroy(js->callbacks); |
394 g_hash_table_destroy(js->buddies); | |
395 if(js->stream_id) | |
396 g_free(js->stream_id); | |
397 jabber_id_free(js->user); | |
398 g_free(js); | |
5093 | 399 } |
400 | |
7014 | 401 void jabber_stream_set_state(JabberStream *js, JabberStreamState state) |
3105 | 402 { |
7014 | 403 js->state = state; |
404 switch(state) { | |
405 case JABBER_STREAM_OFFLINE: | |
406 break; | |
407 case JABBER_STREAM_CONNECTING: | |
408 gaim_connection_update_progress(js->gc, _("Connecting"), 1, | |
409 JABBER_CONNECT_STEPS); | |
410 break; | |
411 case JABBER_STREAM_INITIALIZING: | |
412 gaim_connection_update_progress(js->gc, _("Initializing Stream"), | |
413 js->gsc ? 5 : 2, JABBER_CONNECT_STEPS); | |
414 jabber_stream_init(js); | |
415 jabber_parser_setup(js); | |
416 break; | |
417 case JABBER_STREAM_AUTHENTICATING: | |
418 gaim_connection_update_progress(js->gc, _("Authenticating"), | |
419 js->gsc ? 6 : 3, JABBER_CONNECT_STEPS); | |
420 if(js->protocol_version == JABBER_PROTO_0_9) | |
421 jabber_auth_start_old(js); | |
422 break; | |
423 case JABBER_STREAM_REINITIALIZING: | |
424 gaim_connection_update_progress(js->gc, _("Re-initializing Stream"), | |
425 6, JABBER_CONNECT_STEPS); | |
426 jabber_stream_init(js); | |
427 break; | |
428 case JABBER_STREAM_CONNECTED: | |
429 gaim_connection_set_state(js->gc, GAIM_CONNECTED); | |
430 jabber_roster_request(js); | |
431 jabber_presence_send(js->gc, js->gc->away_state, js->gc->away); | |
432 serv_finish_login(js->gc); | |
433 break; | |
3105 | 434 } |
435 } | |
436 | |
7014 | 437 char *jabber_get_next_id(JabberStream *js) |
2086 | 438 { |
7014 | 439 return g_strdup_printf("gaim%d", js->next_id++); |
2086 | 440 } |
441 | |
7014 | 442 void jabber_idle_set(GaimConnection *gc, int idle) |
3340 | 443 { |
7014 | 444 JabberStream *js = gc->proto_data; |
3340 | 445 |
7014 | 446 js->idle = idle ? time(NULL) - idle : idle; |
3314 | 447 } |
448 | |
6695 | 449 static const char *jabber_list_icon(GaimAccount *a, GaimBuddy *b) |
2086 | 450 { |
4687 | 451 return "jabber"; |
452 } | |
4916 | 453 |
7014 | 454 static void jabber_list_emblems(GaimBuddy *b, char **se, char **sw, |
455 char **nw, char **ne) | |
4916 | 456 { |
7014 | 457 JabberStream *js; |
458 JabberBuddy *jb; | |
459 | |
460 if(!b->account->gc) | |
461 return; | |
462 js = b->account->gc->proto_data; | |
463 jb = jabber_buddy_find(js, b->name, FALSE); | |
5135 | 464 |
465 if(!GAIM_BUDDY_IS_ONLINE(b)) { | |
7014 | 466 if(jb && jb->error_msg) |
4927 | 467 *nw = "error"; |
5135 | 468 |
7014 | 469 if(jb && (jb->subscription & JABBER_SUB_PENDING || |
470 !(jb->subscription & JABBER_SUB_TO))) | |
5135 | 471 *se = "notauthorized"; |
472 else | |
473 *se = "offline"; | |
4916 | 474 } else { |
475 switch (b->uc) { | |
7014 | 476 case JABBER_STATE_AWAY: |
477 *se = "away"; | |
478 break; | |
479 case JABBER_STATE_CHAT: | |
480 *se = "chat"; | |
481 break; | |
482 case JABBER_STATE_XA: | |
483 *se = "extendedaway"; | |
484 break; | |
485 case JABBER_STATE_DND: | |
486 *se = "extendedaway"; | |
487 break; | |
488 case JABBER_STATE_ERROR: | |
489 *se = "error"; | |
490 break; | |
4916 | 491 } |
2086 | 492 } |
4916 | 493 } |
2086 | 494 |
7014 | 495 static char *jabber_status_text(GaimBuddy *b) |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
496 { |
7014 | 497 JabberBuddy *jb = jabber_buddy_find(b->account->gc->proto_data, b->name, |
498 FALSE); | |
499 char *ret = NULL; | |
5234 | 500 |
7014 | 501 if(jb && !GAIM_BUDDY_IS_ONLINE(b) && (jb->subscription & JABBER_SUB_PENDING || !(jb->subscription & JABBER_SUB_TO))) { |
502 ret = g_strdup(_("Not Authorized")); | |
503 } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && jb->error_msg) { | |
504 ret = g_strdup(jb->error_msg); | |
2956 | 505 } else { |
7014 | 506 char *stripped = strip_html(jabber_buddy_get_status_msg(jb)); |
2956 | 507 |
7014 | 508 if(!stripped && b->uc & UC_UNAVAILABLE) |
509 stripped = g_strdup(jabber_get_state_string(b->uc)); | |
2086 | 510 |
7014 | 511 if(stripped) { |
512 ret = g_markup_escape_text(stripped, -1); | |
513 g_free(stripped); | |
514 } | |
2086 | 515 } |
516 | |
7014 | 517 return ret; |
2956 | 518 } |
519 | |
6695 | 520 static char *jabber_tooltip_text(GaimBuddy *b) |
4744 | 521 { |
7014 | 522 JabberBuddy *jb = jabber_buddy_find(b->account->gc->proto_data, b->name, |
523 FALSE); | |
524 JabberBuddyResource *jbr = jabber_buddy_find_resource(jb, NULL); | |
5135 | 525 char *ret = NULL; |
7014 | 526 |
527 if(jbr) { | |
4777 | 528 char *text = NULL; |
7014 | 529 if(jbr->status) { |
530 char *stripped; | |
531 stripped = strip_html(jbr->status); | |
532 text = g_markup_escape_text(stripped, -1); | |
533 g_free(stripped); | |
534 } | |
535 | |
5236 | 536 ret = g_strdup_printf("<b>%s:</b> %s%s%s", |
537 _("Status"), | |
7014 | 538 jabber_get_state_string(jbr->state), |
539 text ? ": " : "", | |
4745 | 540 text ? text : ""); |
7014 | 541 if(text) |
4745 | 542 g_free(text); |
7014 | 543 } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && jb->error_msg) { |
544 ret = g_strdup_printf("<b>%s:</b> %s", | |
545 _("Error"), jb->error_msg); | |
546 } else if(jb && !GAIM_BUDDY_IS_ONLINE(b) && | |
547 (jb->subscription & JABBER_SUB_PENDING || | |
548 !(jb->subscription & JABBER_SUB_TO))) { | |
549 ret = g_strdup_printf("<b>%s:</b> %s", | |
550 _("Status"), _("Not Authorized")); | |
4745 | 551 } |
4744 | 552 |
5135 | 553 return ret; |
4732 | 554 } |
555 | |
7014 | 556 static GList *jabber_away_states(GaimConnection *gc) |
557 { | |
2086 | 558 GList *m = NULL; |
559 | |
4982 | 560 m = g_list_append(m, _("Online")); |
561 m = g_list_append(m, _("Chatty")); | |
562 m = g_list_append(m, _("Away")); | |
563 m = g_list_append(m, _("Extended Away")); | |
564 m = g_list_append(m, _("Do Not Disturb")); | |
565 m = g_list_append(m, _("Invisible")); | |
4110 | 566 m = g_list_append(m, GAIM_AWAY_CUSTOM); |
2086 | 567 |
568 return m; | |
569 } | |
570 | |
5572 | 571 static GList *jabber_actions(GaimConnection *gc) |
2956 | 572 { |
573 GList *m = NULL; | |
4333 | 574 struct proto_actions_menu *pam; |
575 | |
576 pam = g_new0(struct proto_actions_menu, 1); | |
577 pam->label = _("Set User Info"); | |
578 pam->callback = jabber_setup_set_info; | |
579 pam->gc = gc; | |
580 m = g_list_append(m, pam); | |
581 | |
7014 | 582 /* XXX: Change Password */ |
2956 | 583 |
584 return m; | |
585 } | |
586 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
587 static GaimPluginProtocolInfo prpl_info = |
2086 | 588 { |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
589 GAIM_PROTO_JABBER, |
7014 | 590 OPT_PROTO_CHAT_TOPIC | OPT_PROTO_UNIQUE_CHATNAME, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
591 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
592 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
593 jabber_list_icon, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
594 jabber_list_emblems, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
595 jabber_status_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
596 jabber_tooltip_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
597 jabber_away_states, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
598 jabber_actions, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
599 jabber_buddy_menu, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
600 jabber_chat_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
601 jabber_login, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
602 jabber_close, |
7014 | 603 jabber_message_send_im, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
604 jabber_set_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
605 jabber_send_typing, |
7014 | 606 jabber_buddy_get_info, |
607 jabber_presence_send, | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
608 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
609 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
610 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
611 NULL, |
7014 | 612 jabber_idle_set, |
613 NULL, /* change_passwd */ /* XXX */ | |
614 jabber_roster_add_buddy, | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
615 NULL, |
7014 | 616 jabber_roster_remove_buddy, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
617 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
618 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
619 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
620 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
621 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
622 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
623 NULL, |
7014 | 624 jabber_chat_join, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
625 jabber_chat_invite, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
626 jabber_chat_leave, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
627 jabber_chat_whisper, |
7014 | 628 jabber_message_send_chat, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
629 jabber_keepalive, |
7014 | 630 NULL, /* register_user */ /* XXX tell the user success/failure */ |
631 jabber_buddy_get_info_chat, | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
632 NULL, |
7014 | 633 jabber_roster_alias_change, |
634 jabber_roster_group_change, | |
635 jabber_roster_group_rename, | |
636 NULL, | |
637 NULL, /* convo_closed */ /* XXX: thread_ids */ | |
638 NULL /* normalize */ | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
639 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
640 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
641 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
642 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
643 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
644 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
645 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
646 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
647 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
648 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
649 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
650 "prpl-jabber", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
651 "Jabber", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
652 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
653 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
654 N_("Jabber Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
655 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
656 N_("Jabber Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
657 NULL, /**< author */ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
658 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
659 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
660 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
661 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
662 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
663 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
664 NULL, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
665 &prpl_info /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
666 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
667 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
668 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
669 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
670 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
671 GaimAccountUserSplit *split; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
672 GaimAccountOption *option; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
673 |
7019 | 674 info.dependencies = g_list_append(info.dependencies, "core-ssl"); |
675 | |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
676 split = gaim_account_user_split_new(_("Server"), "jabber.org", '@'); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
677 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
|
678 |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
679 split = gaim_account_user_split_new(_("Resource"), "Gaim", '/'); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
680 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
|
681 |
6764 | 682 if(gaim_ssl_is_supported()) { |
7014 | 683 option = gaim_account_option_bool_new(_("Force Old SSL"), "old_ssl", FALSE); |
6764 | 684 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
685 option); | |
686 } | |
687 | |
7014 | 688 option = gaim_account_option_int_new(_("Port"), "port", 5222); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
689 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
7014 | 690 option); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
691 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
692 option = gaim_account_option_string_new(_("Connect server"), |
7014 | 693 "connect_server", NULL); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5613
diff
changeset
|
694 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
7014 | 695 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
696 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5174
diff
changeset
|
697 my_protocol = plugin; |
7014 | 698 |
699 gaim_prefs_add_none("/plugins/prpl/jabber"); | |
700 gaim_prefs_add_bool("/plugins/prpl/jabber/hide_os", FALSE); | |
2086 | 701 } |
702 | |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5894
diff
changeset
|
703 GAIM_INIT_PLUGIN(jabber, init_plugin, info); |