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