Mon, 30 Jul 2007 01:35:00 +0000
propagate from branch 'im.pidgin.pidgin' (head 075149534705288e953e6056bddae07c8ddc4fac)
to branch 'im.pidgin.soc.2007.certmgr' (head 2453c24d2b226c443a5a9529c90ddd5853fea463)
| 16303 | 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 | ||
|
18273
e61c53184c52
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18178
diff
changeset
|
28 | #include "internal.h" |
|
e61c53184c52
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18178
diff
changeset
|
29 | |
| 16303 | 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" | |
| 42 | ||
| 43 | static PurplePluginProtocolInfo prpl_info = | |
| 44 | { | |
| 45 | #ifdef HAVE_CYRUS_SASL | |
| 46 | OPT_PROTO_CHAT_TOPIC | OPT_PROTO_UNIQUE_CHATNAME | | |
|
18092
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17012
diff
changeset
|
47 | OPT_PROTO_MAIL_CHECK | OPT_PROTO_PASSWORD_OPTIONAL | |
|
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17012
diff
changeset
|
48 | OPT_PROTO_SLASH_COMMANDS_NATIVE, |
| 16303 | 49 | #else |
|
18092
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17012
diff
changeset
|
50 | OPT_PROTO_CHAT_TOPIC | OPT_PROTO_UNIQUE_CHATNAME | OPT_PROTO_MAIL_CHECK | |
|
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17012
diff
changeset
|
51 | OPT_PROTO_SLASH_COMMANDS_NATIVE, |
| 16303 | 52 | #endif |
| 53 | NULL, /* user_splits */ | |
| 54 | NULL, /* protocol_options */ | |
| 55 | {"png,gif,jpeg", 32, 32, 96, 96, 8191, PURPLE_ICON_SCALE_SEND | PURPLE_ICON_SCALE_DISPLAY}, /* icon_spec */ | |
| 56 | jabber_list_icon, /* list_icon */ | |
| 57 | jabber_list_emblem, /* list_emblems */ | |
| 58 | jabber_status_text, /* status_text */ | |
| 59 | jabber_tooltip_text, /* tooltip_text */ | |
| 60 | jabber_status_types, /* status_types */ | |
| 61 | jabber_blist_node_menu, /* blist_node_menu */ | |
| 62 | jabber_chat_info, /* chat_info */ | |
| 63 | jabber_chat_info_defaults, /* chat_info_defaults */ | |
| 64 | jabber_login, /* login */ | |
| 65 | jabber_close, /* close */ | |
| 66 | jabber_message_send_im, /* send_im */ | |
| 67 | jabber_set_info, /* set_info */ | |
| 68 | jabber_send_typing, /* send_typing */ | |
| 69 | jabber_buddy_get_info, /* get_info */ | |
| 17683 | 70 | jabber_presence_send, /* set_status */ |
| 16303 | 71 | jabber_idle_set, /* set_idle */ |
| 72 | NULL, /* change_passwd */ | |
| 73 | jabber_roster_add_buddy, /* add_buddy */ | |
| 74 | NULL, /* add_buddies */ | |
| 75 | jabber_roster_remove_buddy, /* remove_buddy */ | |
| 76 | NULL, /* remove_buddies */ | |
| 77 | NULL, /* add_permit */ | |
| 78 | jabber_google_roster_add_deny, /* add_deny */ | |
| 79 | NULL, /* rem_permit */ | |
| 80 | jabber_google_roster_rem_deny, /* rem_deny */ | |
| 81 | NULL, /* set_permit_deny */ | |
| 82 | jabber_chat_join, /* join_chat */ | |
| 83 | NULL, /* reject_chat */ | |
| 84 | jabber_get_chat_name, /* get_chat_name */ | |
| 85 | jabber_chat_invite, /* chat_invite */ | |
| 86 | jabber_chat_leave, /* chat_leave */ | |
| 87 | NULL, /* chat_whisper */ | |
| 88 | jabber_message_send_chat, /* chat_send */ | |
| 89 | jabber_keepalive, /* keepalive */ | |
| 90 | jabber_register_account, /* register_user */ | |
| 91 | jabber_buddy_get_info_chat, /* get_cb_info */ | |
| 92 | NULL, /* get_cb_away */ | |
| 93 | jabber_roster_alias_change, /* alias_buddy */ | |
| 94 | jabber_roster_group_change, /* group_buddy */ | |
| 95 | jabber_roster_group_rename, /* rename_group */ | |
| 96 | NULL, /* buddy_free */ | |
| 97 | jabber_convo_closed, /* convo_closed */ | |
| 98 | jabber_normalize, /* normalize */ | |
| 99 | jabber_set_buddy_icon, /* set_buddy_icon */ | |
| 100 | NULL, /* remove_group */ | |
| 101 | jabber_chat_buddy_real_name, /* get_cb_real_name */ | |
| 102 | jabber_chat_set_topic, /* set_chat_topic */ | |
| 103 | jabber_find_blist_chat, /* find_blist_chat */ | |
| 104 | jabber_roomlist_get_list, /* roomlist_get_list */ | |
| 105 | jabber_roomlist_cancel, /* roomlist_cancel */ | |
| 106 | NULL, /* roomlist_expand_category */ | |
| 107 | NULL, /* can_receive_file */ | |
| 108 | jabber_si_xfer_send, /* send_file */ | |
| 109 | jabber_si_new_xfer, /* new_xfer */ | |
| 110 | jabber_offline_message, /* offline_message */ | |
| 111 | NULL, /* whiteboard_prpl_ops */ | |
| 112 | jabber_prpl_send_raw, /* send_raw */ | |
| 113 | jabber_roomlist_room_serialize, /* roomlist_room_serialize */ | |
|
16746
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
114 | |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
115 | /* padding */ |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
116 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
117 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
118 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
119 | NULL |
| 16303 | 120 | }; |
| 121 | ||
| 122 | static gboolean load_plugin(PurplePlugin *plugin) | |
| 123 | { | |
| 124 | purple_signal_register(plugin, "jabber-receiving-xmlnode", | |
| 125 | purple_marshal_VOID__POINTER_POINTER, NULL, 2, | |
| 126 | purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION), | |
| 127 | purple_value_new_outgoing(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_XMLNODE)); | |
| 128 | ||
| 129 | purple_signal_register(plugin, "jabber-sending-xmlnode", | |
| 130 | purple_marshal_VOID__POINTER_POINTER, NULL, 2, | |
| 131 | purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION), | |
| 132 | purple_value_new_outgoing(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_XMLNODE)); | |
| 133 | ||
| 134 | purple_signal_register(plugin, "jabber-sending-text", | |
| 135 | purple_marshal_VOID__POINTER_POINTER, NULL, 2, | |
| 136 | purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION), | |
| 137 | purple_value_new_outgoing(PURPLE_TYPE_STRING)); | |
| 138 | ||
| 139 | ||
| 140 | return TRUE; | |
| 141 | } | |
| 142 | ||
| 143 | static gboolean unload_plugin(PurplePlugin *plugin) | |
| 144 | { | |
| 145 | purple_signal_unregister(plugin, "jabber-receiving-xmlnode"); | |
| 146 | ||
| 147 | purple_signal_unregister(plugin, "jabber-sending-xmlnode"); | |
| 148 | ||
| 149 | purple_signal_unregister(plugin, "jabber-sending-text"); | |
| 150 | ||
| 151 | return TRUE; | |
| 152 | } | |
| 153 | ||
| 154 | static PurplePluginInfo info = | |
| 155 | { | |
| 156 | PURPLE_PLUGIN_MAGIC, | |
| 157 | PURPLE_MAJOR_VERSION, | |
| 158 | PURPLE_MINOR_VERSION, | |
| 159 | PURPLE_PLUGIN_PROTOCOL, /**< type */ | |
| 160 | NULL, /**< ui_requirement */ | |
| 161 | 0, /**< flags */ | |
| 162 | NULL, /**< dependencies */ | |
| 163 | PURPLE_PRIORITY_DEFAULT, /**< priority */ | |
| 164 | ||
| 165 | "prpl-jabber", /**< id */ | |
| 166 | "XMPP", /**< name */ | |
| 167 | VERSION, /**< version */ | |
| 168 | /** summary */ | |
|
16961
b6955f946f8f
s/Jabber/XMPP in user-visible places.
Richard Laager <rlaager@pidgin.im>
parents:
16799
diff
changeset
|
169 | N_("XMPP Protocol Plugin"), |
| 16303 | 170 | /** description */ |
|
16961
b6955f946f8f
s/Jabber/XMPP in user-visible places.
Richard Laager <rlaager@pidgin.im>
parents:
16799
diff
changeset
|
171 | N_("XMPP Protocol Plugin"), |
| 16303 | 172 | NULL, /**< author */ |
| 173 | PURPLE_WEBSITE, /**< homepage */ | |
| 174 | ||
| 175 | load_plugin, /**< load */ | |
| 176 | unload_plugin, /**< unload */ | |
| 177 | NULL, /**< destroy */ | |
| 178 | ||
| 179 | NULL, /**< ui_info */ | |
| 180 | &prpl_info, /**< extra_info */ | |
| 181 | NULL, /**< prefs_info */ | |
|
16746
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
182 | jabber_actions, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
183 | |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
184 | /* padding */ |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
185 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
186 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
187 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16303
diff
changeset
|
188 | NULL |
| 16303 | 189 | }; |
| 190 | ||
| 191 | static void | |
| 192 | init_plugin(PurplePlugin *plugin) | |
| 193 | { | |
| 194 | PurpleAccountUserSplit *split; | |
| 195 | PurpleAccountOption *option; | |
| 196 | ||
|
17008
502623177086
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@pidgin.im>
parents:
17007
diff
changeset
|
197 | /* Translators: 'domain' is used here in the context of Internet domains, e.g. pidgin.im */ |
|
17012
d8ebf5b1495a
disapproval of revision '1fc45901ebedf4d25b4b3a763665df36d8e411a3'
Richard Laager <rlaager@pidgin.im>
parents:
17011
diff
changeset
|
198 | split = purple_account_user_split_new(_("Domain"), NULL, '@'); |
|
18099
f38988d232f7
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
18092
diff
changeset
|
199 | purple_account_user_split_set_reverse(split, FALSE); |
| 16303 | 200 | prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
| 201 | ||
| 202 | split = purple_account_user_split_new(_("Resource"), "Home", '/'); | |
|
18099
f38988d232f7
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
18092
diff
changeset
|
203 | purple_account_user_split_set_reverse(split, FALSE); |
| 16303 | 204 | prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
| 205 | ||
| 206 | option = purple_account_option_bool_new(_("Force old (port 5223) SSL"), "old_ssl", FALSE); | |
| 207 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
| 208 | option); | |
| 209 | ||
| 210 | option = purple_account_option_bool_new( | |
| 211 | _("Allow plaintext auth over unencrypted streams"), | |
| 212 | "auth_plain_in_clear", FALSE); | |
| 213 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
| 214 | option); | |
| 215 | ||
| 216 | option = purple_account_option_int_new(_("Connect port"), "port", 5222); | |
| 217 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
| 218 | option); | |
| 219 | ||
| 220 | option = purple_account_option_string_new(_("Connect server"), | |
| 221 | "connect_server", NULL); | |
| 222 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
| 223 | option); | |
| 224 | ||
| 225 | ||
| 226 | jabber_init_plugin(plugin); | |
| 227 | ||
| 228 | purple_prefs_remove("/plugins/prpl/jabber"); | |
| 229 | ||
| 230 | /* XXX - If any other plugin wants SASL this won't be good ... */ | |
| 231 | #ifdef HAVE_CYRUS_SASL | |
| 232 | sasl_client_init(NULL); | |
| 233 | #endif | |
| 234 | jabber_register_commands(); | |
| 235 | ||
| 236 | jabber_iq_init(); | |
| 237 | } | |
| 238 | ||
| 239 | ||
| 240 | PURPLE_INIT_PLUGIN(jabber, init_plugin, info); |