Mercurial > pidgin
annotate libpurple/protocols/jabber/libxmpp.c @ 18703:033b128f7c21
Added unregistering XMPP accounts. This requires a new prpl-struct entry, but I got an ok for that on the mailing list.
author | Andreas Monitzer <pidgin@monitzer.com> |
---|---|
date | Mon, 30 Jul 2007 00:01:08 +0000 |
parents | 5c1ed6296b56 |
children | 5d0141588299 |
rev | line source |
---|---|
16241 | 1 /* purple |
2 * | |
3 * Purple is the legal property of its developers, whose names are too numerous | |
4 * to list here. Please refer to the COPYRIGHT file distributed with this | |
5 * source distribution. | |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
8 * it under the terms of the GNU General Public License as published by | |
9 * the Free Software Foundation; either version 2 of the License, or | |
10 * (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 * GNU General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program; if not, write to the Free Software | |
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
20 * | |
21 */ | |
22 | |
23 /* libxmpp is the XMPP protocol plugin. It is linked against libjabbercommon, | |
24 * which may be used to support other protocols (Bonjour) which may need to | |
25 * share code. | |
26 */ | |
27 | |
18210
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
18106
diff
changeset
|
28 #include "internal.h" |
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
18106
diff
changeset
|
29 |
16241 | 30 #include "accountopt.h" |
31 #include "version.h" | |
32 | |
33 #include "iq.h" | |
34 #include "jabber.h" | |
35 #include "chat.h" | |
36 #include "message.h" | |
37 #include "roster.h" | |
38 #include "si.h" | |
39 #include "message.h" | |
40 #include "presence.h" | |
41 #include "google.h" | |
17839
0370da969e8a
Implemented adding callbacks for PEP events. Moved the feature list to be application-global instead of per-connection (makes more sense).
Andreas Monitzer <pidgin@monitzer.com>
parents:
16962
diff
changeset
|
42 #include "pep.h" |
17857
3e437e86bd6e
Implemented user tune, currently untested.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17854
diff
changeset
|
43 #include "usertune.h" |
17882
f88b3a093cba
Implemented ad-hoc commands for the buddy action menu (untested), implemented the receiving end of XEP-0115: Entity Capabilities. Note that this seems not to be reliable right now, since some clients seem to have a very broken [read: completely non-functional] implementation (most notably Gajim and the py-transports).
Andreas Monitzer <pidgin@monitzer.com>
parents:
17866
diff
changeset
|
44 #include "caps.h" |
16241 | 45 |
46 static PurplePluginProtocolInfo prpl_info = | |
47 { | |
48 #ifdef HAVE_CYRUS_SASL | |
49 OPT_PROTO_CHAT_TOPIC | OPT_PROTO_UNIQUE_CHATNAME | | |
18030
62a71bb085ef
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <stu@nosnilmot.com>
parents:
16962
diff
changeset
|
50 OPT_PROTO_MAIL_CHECK | OPT_PROTO_PASSWORD_OPTIONAL | |
62a71bb085ef
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <stu@nosnilmot.com>
parents:
16962
diff
changeset
|
51 OPT_PROTO_SLASH_COMMANDS_NATIVE, |
16241 | 52 #else |
18030
62a71bb085ef
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <stu@nosnilmot.com>
parents:
16962
diff
changeset
|
53 OPT_PROTO_CHAT_TOPIC | OPT_PROTO_UNIQUE_CHATNAME | OPT_PROTO_MAIL_CHECK | |
62a71bb085ef
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <stu@nosnilmot.com>
parents:
16962
diff
changeset
|
54 OPT_PROTO_SLASH_COMMANDS_NATIVE, |
16241 | 55 #endif |
56 NULL, /* user_splits */ | |
57 NULL, /* protocol_options */ | |
17853
7754d39d70c5
Added support for setting the avatar via XEP-0084. Receiving other people's avatar is up next.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17839
diff
changeset
|
58 {"png", 32, 32, 96, 96, 8191, PURPLE_ICON_SCALE_SEND | PURPLE_ICON_SCALE_DISPLAY}, /* icon_spec */ |
16241 | 59 jabber_list_icon, /* list_icon */ |
60 jabber_list_emblem, /* list_emblems */ | |
61 jabber_status_text, /* status_text */ | |
62 jabber_tooltip_text, /* tooltip_text */ | |
63 jabber_status_types, /* status_types */ | |
64 jabber_blist_node_menu, /* blist_node_menu */ | |
65 jabber_chat_info, /* chat_info */ | |
66 jabber_chat_info_defaults, /* chat_info_defaults */ | |
67 jabber_login, /* login */ | |
68 jabber_close, /* close */ | |
69 jabber_message_send_im, /* send_im */ | |
70 jabber_set_info, /* set_info */ | |
71 jabber_send_typing, /* send_typing */ | |
72 jabber_buddy_get_info, /* get_info */ | |
17576 | 73 jabber_presence_send, /* set_status */ |
16241 | 74 jabber_idle_set, /* set_idle */ |
75 NULL, /* change_passwd */ | |
76 jabber_roster_add_buddy, /* add_buddy */ | |
77 NULL, /* add_buddies */ | |
78 jabber_roster_remove_buddy, /* remove_buddy */ | |
79 NULL, /* remove_buddies */ | |
80 NULL, /* add_permit */ | |
81 jabber_google_roster_add_deny, /* add_deny */ | |
82 NULL, /* rem_permit */ | |
83 jabber_google_roster_rem_deny, /* rem_deny */ | |
84 NULL, /* set_permit_deny */ | |
85 jabber_chat_join, /* join_chat */ | |
86 NULL, /* reject_chat */ | |
87 jabber_get_chat_name, /* get_chat_name */ | |
88 jabber_chat_invite, /* chat_invite */ | |
89 jabber_chat_leave, /* chat_leave */ | |
90 NULL, /* chat_whisper */ | |
91 jabber_message_send_chat, /* chat_send */ | |
92 jabber_keepalive, /* keepalive */ | |
93 jabber_register_account, /* register_user */ | |
94 jabber_buddy_get_info_chat, /* get_cb_info */ | |
95 NULL, /* get_cb_away */ | |
96 jabber_roster_alias_change, /* alias_buddy */ | |
97 jabber_roster_group_change, /* group_buddy */ | |
98 jabber_roster_group_rename, /* rename_group */ | |
99 NULL, /* buddy_free */ | |
100 jabber_convo_closed, /* convo_closed */ | |
101 jabber_normalize, /* normalize */ | |
102 jabber_set_buddy_icon, /* set_buddy_icon */ | |
103 NULL, /* remove_group */ | |
104 jabber_chat_buddy_real_name, /* get_cb_real_name */ | |
105 jabber_chat_set_topic, /* set_chat_topic */ | |
106 jabber_find_blist_chat, /* find_blist_chat */ | |
107 jabber_roomlist_get_list, /* roomlist_get_list */ | |
108 jabber_roomlist_cancel, /* roomlist_cancel */ | |
109 NULL, /* roomlist_expand_category */ | |
110 NULL, /* can_receive_file */ | |
111 jabber_si_xfer_send, /* send_file */ | |
112 jabber_si_new_xfer, /* new_xfer */ | |
113 jabber_offline_message, /* offline_message */ | |
114 NULL, /* whiteboard_prpl_ops */ | |
115 jabber_prpl_send_raw, /* send_raw */ | |
116 jabber_roomlist_room_serialize, /* roomlist_room_serialize */ | |
18703
033b128f7c21
Added unregistering XMPP accounts. This requires a new prpl-struct entry, but I got an ok for that on the mailing list.
Andreas Monitzer <pidgin@monitzer.com>
parents:
18684
diff
changeset
|
117 jabber_unregister_account, /* unregister_user */ |
16667
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
118 |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
119 /* padding */ |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
120 NULL, |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
121 NULL, |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
122 NULL |
16241 | 123 }; |
124 | |
125 static gboolean load_plugin(PurplePlugin *plugin) | |
126 { | |
127 purple_signal_register(plugin, "jabber-receiving-xmlnode", | |
128 purple_marshal_VOID__POINTER_POINTER, NULL, 2, | |
129 purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION), | |
130 purple_value_new_outgoing(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_XMLNODE)); | |
131 | |
132 purple_signal_register(plugin, "jabber-sending-xmlnode", | |
133 purple_marshal_VOID__POINTER_POINTER, NULL, 2, | |
134 purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION), | |
135 purple_value_new_outgoing(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_XMLNODE)); | |
136 | |
137 purple_signal_register(plugin, "jabber-sending-text", | |
138 purple_marshal_VOID__POINTER_POINTER, NULL, 2, | |
139 purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION), | |
140 purple_value_new_outgoing(PURPLE_TYPE_STRING)); | |
141 | |
142 | |
143 return TRUE; | |
144 } | |
145 | |
146 static gboolean unload_plugin(PurplePlugin *plugin) | |
147 { | |
148 purple_signal_unregister(plugin, "jabber-receiving-xmlnode"); | |
149 | |
150 purple_signal_unregister(plugin, "jabber-sending-xmlnode"); | |
151 | |
152 purple_signal_unregister(plugin, "jabber-sending-text"); | |
153 | |
154 return TRUE; | |
155 } | |
156 | |
157 static PurplePluginInfo info = | |
158 { | |
159 PURPLE_PLUGIN_MAGIC, | |
160 PURPLE_MAJOR_VERSION, | |
161 PURPLE_MINOR_VERSION, | |
162 PURPLE_PLUGIN_PROTOCOL, /**< type */ | |
163 NULL, /**< ui_requirement */ | |
164 0, /**< flags */ | |
165 NULL, /**< dependencies */ | |
166 PURPLE_PRIORITY_DEFAULT, /**< priority */ | |
167 | |
168 "prpl-jabber", /**< id */ | |
169 "XMPP", /**< name */ | |
170 VERSION, /**< version */ | |
171 /** summary */ | |
16904
56042b2f8b64
s/Jabber/XMPP in user-visible places.
Richard Laager <rlaager@wiktel.com>
parents:
16719
diff
changeset
|
172 N_("XMPP Protocol Plugin"), |
16241 | 173 /** description */ |
16904
56042b2f8b64
s/Jabber/XMPP in user-visible places.
Richard Laager <rlaager@wiktel.com>
parents:
16719
diff
changeset
|
174 N_("XMPP Protocol Plugin"), |
16241 | 175 NULL, /**< author */ |
176 PURPLE_WEBSITE, /**< homepage */ | |
177 | |
178 load_plugin, /**< load */ | |
179 unload_plugin, /**< unload */ | |
180 NULL, /**< destroy */ | |
181 | |
182 NULL, /**< ui_info */ | |
183 &prpl_info, /**< extra_info */ | |
184 NULL, /**< prefs_info */ | |
16667
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
185 jabber_actions, |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
186 |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
187 /* padding */ |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
188 NULL, |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
189 NULL, |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
190 NULL, |
a338acd14365
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16241
diff
changeset
|
191 NULL |
16241 | 192 }; |
193 | |
194 static void | |
195 init_plugin(PurplePlugin *plugin) | |
196 { | |
197 PurpleAccountUserSplit *split; | |
198 PurpleAccountOption *option; | |
199 | |
16952
919515748253
Handle people forgetting to enter a domain. Also, change 'server,' in the account options to 'domain,' which is its proper name, and hopefully less confusion
Sean Egan <seanegan@gmail.com>
parents:
16951
diff
changeset
|
200 /* Translators: 'domain' is used here in the context of Internet domains, e.g. pidgin.im */ |
16962
b08636a33721
disapproval of revision 'b53a835bb1f153bec412cb4b7b18e9b93829c4d3'
Richard Laager <rlaager@wiktel.com>
parents:
16961
diff
changeset
|
201 split = purple_account_user_split_new(_("Domain"), NULL, '@'); |
18037
e3e42a99070e
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
18030
diff
changeset
|
202 purple_account_user_split_set_reverse(split, FALSE); |
16241 | 203 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
204 | |
205 split = purple_account_user_split_new(_("Resource"), "Home", '/'); | |
18037
e3e42a99070e
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
18030
diff
changeset
|
206 purple_account_user_split_set_reverse(split, FALSE); |
16241 | 207 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
208 | |
17896
a8420fd18545
Added an option to require SSL or TLS when connecting to an XMPP server.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17890
diff
changeset
|
209 option = purple_account_option_bool_new(_("Require SSL/TLS"), "require_tls", FALSE); |
a8420fd18545
Added an option to require SSL or TLS when connecting to an XMPP server.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17890
diff
changeset
|
210 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
a8420fd18545
Added an option to require SSL or TLS when connecting to an XMPP server.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17890
diff
changeset
|
211 option); |
a8420fd18545
Added an option to require SSL or TLS when connecting to an XMPP server.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17890
diff
changeset
|
212 |
a8420fd18545
Added an option to require SSL or TLS when connecting to an XMPP server.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17890
diff
changeset
|
213 option = purple_account_option_bool_new(_("Force old (port 5223) SSL"), "old_ssl", FALSE); |
16241 | 214 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
215 option); | |
216 | |
217 option = purple_account_option_bool_new( | |
218 _("Allow plaintext auth over unencrypted streams"), | |
219 "auth_plain_in_clear", FALSE); | |
220 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
221 option); | |
222 | |
223 option = purple_account_option_int_new(_("Connect port"), "port", 5222); | |
224 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
225 option); | |
226 | |
227 option = purple_account_option_string_new(_("Connect server"), | |
228 "connect_server", NULL); | |
229 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
230 option); | |
231 | |
232 | |
233 jabber_init_plugin(plugin); | |
234 | |
235 purple_prefs_remove("/plugins/prpl/jabber"); | |
236 | |
237 /* XXX - If any other plugin wants SASL this won't be good ... */ | |
238 #ifdef HAVE_CYRUS_SASL | |
239 sasl_client_init(NULL); | |
240 #endif | |
241 jabber_register_commands(); | |
242 | |
243 jabber_iq_init(); | |
17839
0370da969e8a
Implemented adding callbacks for PEP events. Moved the feature list to be application-global instead of per-connection (makes more sense).
Andreas Monitzer <pidgin@monitzer.com>
parents:
16962
diff
changeset
|
244 jabber_pep_init(); |
17862
248d2d0c606e
Forgot to initialize the user tune
Andreas Monitzer <pidgin@monitzer.com>
parents:
17861
diff
changeset
|
245 |
248d2d0c606e
Forgot to initialize the user tune
Andreas Monitzer <pidgin@monitzer.com>
parents:
17861
diff
changeset
|
246 jabber_tune_init(); |
17882
f88b3a093cba
Implemented ad-hoc commands for the buddy action menu (untested), implemented the receiving end of XEP-0115: Entity Capabilities. Note that this seems not to be reliable right now, since some clients seem to have a very broken [read: completely non-functional] implementation (most notably Gajim and the py-transports).
Andreas Monitzer <pidgin@monitzer.com>
parents:
17866
diff
changeset
|
247 jabber_caps_init(); |
17854
5ab3c6bb95b4
Implemented receiving other people's avatars via XEP-0084. Note that this code now includes a workaround for a non-spec incompatibility for the current ejabberd PEP implementation, and doesn't use the correct namespace due to Psi using the wrong one (outdated?). Works fine though, and the vcard-based approach is retained.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17853
diff
changeset
|
248 |
17861
91cbd18fee06
svn revision 728 of Psi fixes the avatar namespace issue, so I can remove this workaround.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17857
diff
changeset
|
249 jabber_add_feature("avatarmeta", AVATARNAMESPACEMETA, jabber_pep_namespace_only_when_pep_enabled_cb); |
91cbd18fee06
svn revision 728 of Psi fixes the avatar namespace issue, so I can remove this workaround.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17857
diff
changeset
|
250 jabber_add_feature("avatardata", AVATARNAMESPACEDATA, jabber_pep_namespace_only_when_pep_enabled_cb); |
17890
935005186312
Added the option to enable/disable buzz via a status setting. It's default off for the pidgin folks.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17889
diff
changeset
|
251 jabber_add_feature("buzz", "http://pidgin.im/libpurple/xmpp/attention", jabber_buzz_isenabled); |
17854
5ab3c6bb95b4
Implemented receiving other people's avatars via XEP-0084. Note that this code now includes a workaround for a non-spec incompatibility for the current ejabberd PEP implementation, and doesn't use the correct namespace due to Psi using the wrong one (outdated?). Works fine though, and the vcard-based approach is retained.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17853
diff
changeset
|
252 |
17861
91cbd18fee06
svn revision 728 of Psi fixes the avatar namespace issue, so I can remove this workaround.
Andreas Monitzer <pidgin@monitzer.com>
parents:
17857
diff
changeset
|
253 jabber_pep_register_handler("avatar", AVATARNAMESPACEMETA, jabber_buddy_avatar_update_metadata); |
16241 | 254 } |
255 | |
256 | |
257 PURPLE_INIT_PLUGIN(jabber, init_plugin, info); |