comparison libpurple/protocols/jabber/libxmpp.c @ 16241:1aed376daccb

Very important to add files \!
author Sean Egan <seanegan@gmail.com>
date Wed, 18 Apr 2007 21:14:34 +0000
parents
children a338acd14365
comparison
equal deleted inserted replaced
16240:547c76fe2e7a 16241:1aed376daccb
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 */
111 };
112
113 static gboolean load_plugin(PurplePlugin *plugin)
114 {
115 purple_signal_register(plugin, "jabber-receiving-xmlnode",
116 purple_marshal_VOID__POINTER_POINTER, NULL, 2,
117 purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION),
118 purple_value_new_outgoing(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_XMLNODE));
119
120 purple_signal_register(plugin, "jabber-sending-xmlnode",
121 purple_marshal_VOID__POINTER_POINTER, NULL, 2,
122 purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION),
123 purple_value_new_outgoing(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_XMLNODE));
124
125 purple_signal_register(plugin, "jabber-sending-text",
126 purple_marshal_VOID__POINTER_POINTER, NULL, 2,
127 purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_CONNECTION),
128 purple_value_new_outgoing(PURPLE_TYPE_STRING));
129
130
131 return TRUE;
132 }
133
134 static gboolean unload_plugin(PurplePlugin *plugin)
135 {
136 purple_signal_unregister(plugin, "jabber-receiving-xmlnode");
137
138 purple_signal_unregister(plugin, "jabber-sending-xmlnode");
139
140 purple_signal_unregister(plugin, "jabber-sending-text");
141
142 return TRUE;
143 }
144
145 static PurplePluginInfo info =
146 {
147 PURPLE_PLUGIN_MAGIC,
148 PURPLE_MAJOR_VERSION,
149 PURPLE_MINOR_VERSION,
150 PURPLE_PLUGIN_PROTOCOL, /**< type */
151 NULL, /**< ui_requirement */
152 0, /**< flags */
153 NULL, /**< dependencies */
154 PURPLE_PRIORITY_DEFAULT, /**< priority */
155
156 "prpl-jabber", /**< id */
157 "XMPP", /**< name */
158 VERSION, /**< version */
159 /** summary */
160 N_("Jabber Protocol Plugin"),
161 /** description */
162 N_("Jabber Protocol Plugin"),
163 NULL, /**< author */
164 PURPLE_WEBSITE, /**< homepage */
165
166 load_plugin, /**< load */
167 unload_plugin, /**< unload */
168 NULL, /**< destroy */
169
170 NULL, /**< ui_info */
171 &prpl_info, /**< extra_info */
172 NULL, /**< prefs_info */
173 jabber_actions
174 };
175
176 static void
177 init_plugin(PurplePlugin *plugin)
178 {
179 PurpleAccountUserSplit *split;
180 PurpleAccountOption *option;
181
182 split = purple_account_user_split_new(_("Server"), "jabber.org", '@');
183 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split);
184
185 split = purple_account_user_split_new(_("Resource"), "Home", '/');
186 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split);
187
188 option = purple_account_option_bool_new(_("Force old (port 5223) SSL"), "old_ssl", FALSE);
189 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options,
190 option);
191
192 option = purple_account_option_bool_new(
193 _("Allow plaintext auth over unencrypted streams"),
194 "auth_plain_in_clear", FALSE);
195 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options,
196 option);
197
198 option = purple_account_option_int_new(_("Connect port"), "port", 5222);
199 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options,
200 option);
201
202 option = purple_account_option_string_new(_("Connect server"),
203 "connect_server", NULL);
204 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options,
205 option);
206
207
208 jabber_init_plugin(plugin);
209
210 purple_prefs_remove("/plugins/prpl/jabber");
211
212 /* XXX - If any other plugin wants SASL this won't be good ... */
213 #ifdef HAVE_CYRUS_SASL
214 sasl_client_init(NULL);
215 #endif
216 jabber_register_commands();
217
218 jabber_iq_init();
219 }
220
221
222 PURPLE_INIT_PLUGIN(jabber, init_plugin, info);