1 | /********************************************************************\ |
---|
2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
3 | * * |
---|
4 | * Copyright 2002-2010 Wilmer van der Gaast and others * |
---|
5 | \********************************************************************/ |
---|
6 | |
---|
7 | /* MSN module - Main file; functions to be called from BitlBee */ |
---|
8 | |
---|
9 | /* |
---|
10 | This program is free software; you can redistribute it and/or modify |
---|
11 | it under the terms of the GNU General Public License as published by |
---|
12 | the Free Software Foundation; either version 2 of the License, or |
---|
13 | (at your option) any later version. |
---|
14 | |
---|
15 | This program is distributed in the hope that it will be useful, |
---|
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
18 | GNU General Public License for more details. |
---|
19 | |
---|
20 | You should have received a copy of the GNU General Public License with |
---|
21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
22 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
23 | Suite 330, Boston, MA 02111-1307 USA |
---|
24 | */ |
---|
25 | |
---|
26 | #include "nogaim.h" |
---|
27 | #include "soap.h" |
---|
28 | #include "msn.h" |
---|
29 | |
---|
30 | int msn_chat_id; |
---|
31 | GSList *msn_connections; |
---|
32 | GSList *msn_switchboards; |
---|
33 | |
---|
34 | static char *set_eval_display_name( set_t *set, char *value ); |
---|
35 | |
---|
36 | static void msn_init( account_t *acc ) |
---|
37 | { |
---|
38 | set_t *s; |
---|
39 | |
---|
40 | s = set_add( &acc->set, "display_name", NULL, set_eval_display_name, acc ); |
---|
41 | s->flags |= ACC_SET_NOSAVE | ACC_SET_ONLINE_ONLY; |
---|
42 | |
---|
43 | set_add( &acc->set, "mail_notifications", "false", set_eval_bool, acc ); |
---|
44 | set_add( &acc->set, "switchboard_keepalives", "false", set_eval_bool, acc ); |
---|
45 | |
---|
46 | acc->flags |= ACC_FLAG_AWAY_MESSAGE | ACC_FLAG_STATUS_MESSAGE; |
---|
47 | } |
---|
48 | |
---|
49 | static void msn_login( account_t *acc ) |
---|
50 | { |
---|
51 | struct im_connection *ic = imcb_new( acc ); |
---|
52 | struct msn_data *md = g_new0( struct msn_data, 1 ); |
---|
53 | |
---|
54 | ic->proto_data = md; |
---|
55 | |
---|
56 | if( strchr( acc->user, '@' ) == NULL ) |
---|
57 | { |
---|
58 | imcb_error( ic, "Invalid account name" ); |
---|
59 | imc_logout( ic, FALSE ); |
---|
60 | return; |
---|
61 | } |
---|
62 | |
---|
63 | md->ic = ic; |
---|
64 | md->away_state = msn_away_state_list; |
---|
65 | md->domaintree = g_tree_new( msn_domaintree_cmp ); |
---|
66 | md->ns->fd = -1; |
---|
67 | |
---|
68 | msn_connections = g_slist_prepend( msn_connections, ic ); |
---|
69 | |
---|
70 | imcb_log( ic, "Connecting" ); |
---|
71 | msn_ns_connect( ic, md->ns, MSN_NS_HOST, MSN_NS_PORT ); |
---|
72 | } |
---|
73 | |
---|
74 | static void msn_logout( struct im_connection *ic ) |
---|
75 | { |
---|
76 | struct msn_data *md = ic->proto_data; |
---|
77 | GSList *l; |
---|
78 | int i; |
---|
79 | |
---|
80 | if( md ) |
---|
81 | { |
---|
82 | /** Disabling MSN ft support for now. |
---|
83 | while( md->filetransfers ) { |
---|
84 | imcb_file_canceled( md->filetransfers->data, "Closing connection" ); |
---|
85 | } |
---|
86 | */ |
---|
87 | |
---|
88 | msn_ns_close( md->ns ); |
---|
89 | |
---|
90 | while( md->switchboards ) |
---|
91 | msn_sb_destroy( md->switchboards->data ); |
---|
92 | |
---|
93 | msn_msgq_purge( ic, &md->msgq ); |
---|
94 | msn_soapq_flush( ic, FALSE ); |
---|
95 | |
---|
96 | for( i = 0; i < sizeof( md->tokens ) / sizeof( md->tokens[0] ); i ++ ) |
---|
97 | g_free( md->tokens[i] ); |
---|
98 | g_free( md->lock_key ); |
---|
99 | g_free( md->pp_policy ); |
---|
100 | |
---|
101 | while( md->groups ) |
---|
102 | { |
---|
103 | struct msn_group *mg = md->groups->data; |
---|
104 | g_free( mg->id ); |
---|
105 | g_free( mg->name ); |
---|
106 | g_free( mg ); |
---|
107 | md->groups = g_slist_remove( md->groups, mg ); |
---|
108 | } |
---|
109 | |
---|
110 | g_free( md->profile_rid ); |
---|
111 | |
---|
112 | if( md->domaintree ) |
---|
113 | g_tree_destroy( md->domaintree ); |
---|
114 | md->domaintree = NULL; |
---|
115 | |
---|
116 | while( md->grpq ) |
---|
117 | { |
---|
118 | struct msn_groupadd *ga = md->grpq->data; |
---|
119 | g_free( ga->group ); |
---|
120 | g_free( ga->who ); |
---|
121 | g_free( ga ); |
---|
122 | md->grpq = g_slist_remove( md->grpq, ga ); |
---|
123 | } |
---|
124 | |
---|
125 | g_free( md ); |
---|
126 | } |
---|
127 | |
---|
128 | for( l = ic->permit; l; l = l->next ) |
---|
129 | g_free( l->data ); |
---|
130 | g_slist_free( ic->permit ); |
---|
131 | |
---|
132 | for( l = ic->deny; l; l = l->next ) |
---|
133 | g_free( l->data ); |
---|
134 | g_slist_free( ic->deny ); |
---|
135 | |
---|
136 | msn_connections = g_slist_remove( msn_connections, ic ); |
---|
137 | } |
---|
138 | |
---|
139 | static int msn_buddy_msg( struct im_connection *ic, char *who, char *message, int away ) |
---|
140 | { |
---|
141 | struct msn_switchboard *sb; |
---|
142 | |
---|
143 | #ifdef DEBUG |
---|
144 | if( strcmp( who, "raw" ) == 0 ) |
---|
145 | { |
---|
146 | msn_ns_write( ic, -1, "%s\r\n", message ); |
---|
147 | } |
---|
148 | else |
---|
149 | #endif |
---|
150 | if( ( sb = msn_sb_by_handle( ic, who ) ) ) |
---|
151 | { |
---|
152 | return( msn_sb_sendmessage( sb, message ) ); |
---|
153 | } |
---|
154 | else |
---|
155 | { |
---|
156 | struct msn_message *m; |
---|
157 | |
---|
158 | /* Create a message. We have to arrange a usable switchboard, and send the message later. */ |
---|
159 | m = g_new0( struct msn_message, 1 ); |
---|
160 | m->who = g_strdup( who ); |
---|
161 | m->text = g_strdup( message ); |
---|
162 | |
---|
163 | return msn_sb_write_msg( ic, m ); |
---|
164 | } |
---|
165 | |
---|
166 | return( 0 ); |
---|
167 | } |
---|
168 | |
---|
169 | static GList *msn_away_states( struct im_connection *ic ) |
---|
170 | { |
---|
171 | static GList *l = NULL; |
---|
172 | int i; |
---|
173 | |
---|
174 | if( l == NULL ) |
---|
175 | for( i = 0; *msn_away_state_list[i].code; i ++ ) |
---|
176 | if( *msn_away_state_list[i].name ) |
---|
177 | l = g_list_append( l, (void*) msn_away_state_list[i].name ); |
---|
178 | |
---|
179 | return l; |
---|
180 | } |
---|
181 | |
---|
182 | static void msn_set_away( struct im_connection *ic, char *state, char *message ) |
---|
183 | { |
---|
184 | char *uux; |
---|
185 | struct msn_data *md = ic->proto_data; |
---|
186 | |
---|
187 | if( state == NULL ) |
---|
188 | md->away_state = msn_away_state_list; |
---|
189 | else if( ( md->away_state = msn_away_state_by_name( state ) ) == NULL ) |
---|
190 | md->away_state = msn_away_state_list + 1; |
---|
191 | |
---|
192 | if( !msn_ns_write( ic, -1, "CHG %d %s\r\n", ++md->trId, md->away_state->code ) ) |
---|
193 | return; |
---|
194 | |
---|
195 | uux = g_markup_printf_escaped( "<Data><PSM>%s</PSM><CurrentMedia></CurrentMedia>" |
---|
196 | "</Data>", message ? message : "" ); |
---|
197 | msn_ns_write( ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen( uux ), uux ); |
---|
198 | g_free( uux ); |
---|
199 | } |
---|
200 | |
---|
201 | static void msn_get_info(struct im_connection *ic, char *who) |
---|
202 | { |
---|
203 | /* Just make an URL and let the user fetch the info */ |
---|
204 | imcb_log( ic, "%s\n%s: %s%s", _("User Info"), _("For now, fetch yourself"), PROFILE_URL, who ); |
---|
205 | } |
---|
206 | |
---|
207 | static void msn_add_buddy( struct im_connection *ic, char *who, char *group ) |
---|
208 | { |
---|
209 | struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who ); |
---|
210 | |
---|
211 | msn_buddy_list_add( ic, MSN_BUDDY_FL, who, who, group ); |
---|
212 | if( bu && bu->group ) |
---|
213 | msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, bu->group->name ); |
---|
214 | } |
---|
215 | |
---|
216 | static void msn_remove_buddy( struct im_connection *ic, char *who, char *group ) |
---|
217 | { |
---|
218 | msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, NULL ); |
---|
219 | } |
---|
220 | |
---|
221 | static void msn_chat_msg( struct groupchat *c, char *message, int flags ) |
---|
222 | { |
---|
223 | struct msn_switchboard *sb = msn_sb_by_chat( c ); |
---|
224 | |
---|
225 | if( sb ) |
---|
226 | msn_sb_sendmessage( sb, message ); |
---|
227 | /* FIXME: Error handling (although this can't happen unless something's |
---|
228 | already severely broken) disappeared here! */ |
---|
229 | } |
---|
230 | |
---|
231 | static void msn_chat_invite( struct groupchat *c, char *who, char *message ) |
---|
232 | { |
---|
233 | struct msn_switchboard *sb = msn_sb_by_chat( c ); |
---|
234 | char buf[1024]; |
---|
235 | |
---|
236 | if( sb ) |
---|
237 | { |
---|
238 | g_snprintf( buf, sizeof( buf ), "CAL %d %s\r\n", ++sb->trId, who ); |
---|
239 | msn_sb_write( sb, buf, strlen( buf ) ); |
---|
240 | } |
---|
241 | } |
---|
242 | |
---|
243 | static void msn_chat_leave( struct groupchat *c ) |
---|
244 | { |
---|
245 | struct msn_switchboard *sb = msn_sb_by_chat( c ); |
---|
246 | |
---|
247 | if( sb ) |
---|
248 | msn_sb_write( sb, "OUT\r\n", 5 ); |
---|
249 | } |
---|
250 | |
---|
251 | static struct groupchat *msn_chat_with( struct im_connection *ic, char *who ) |
---|
252 | { |
---|
253 | struct msn_switchboard *sb; |
---|
254 | struct groupchat *c = imcb_chat_new( ic, who ); |
---|
255 | |
---|
256 | if( ( sb = msn_sb_by_handle( ic, who ) ) ) |
---|
257 | { |
---|
258 | debug( "Converting existing switchboard to %s to a groupchat", who ); |
---|
259 | return msn_sb_to_chat( sb ); |
---|
260 | } |
---|
261 | else |
---|
262 | { |
---|
263 | struct msn_message *m; |
---|
264 | |
---|
265 | /* Create a magic message. This is quite hackish, but who cares? :-P */ |
---|
266 | m = g_new0( struct msn_message, 1 ); |
---|
267 | m->who = g_strdup( who ); |
---|
268 | m->text = g_strdup( GROUPCHAT_SWITCHBOARD_MESSAGE ); |
---|
269 | |
---|
270 | msn_sb_write_msg( ic, m ); |
---|
271 | |
---|
272 | return c; |
---|
273 | } |
---|
274 | } |
---|
275 | |
---|
276 | static void msn_keepalive( struct im_connection *ic ) |
---|
277 | { |
---|
278 | msn_ns_write( ic, -1, "PNG\r\n" ); |
---|
279 | } |
---|
280 | |
---|
281 | static void msn_add_permit( struct im_connection *ic, char *who ) |
---|
282 | { |
---|
283 | msn_buddy_list_add( ic, MSN_BUDDY_AL, who, who, NULL ); |
---|
284 | } |
---|
285 | |
---|
286 | static void msn_rem_permit( struct im_connection *ic, char *who ) |
---|
287 | { |
---|
288 | msn_buddy_list_remove( ic, MSN_BUDDY_AL, who, NULL ); |
---|
289 | } |
---|
290 | |
---|
291 | static void msn_add_deny( struct im_connection *ic, char *who ) |
---|
292 | { |
---|
293 | struct msn_switchboard *sb; |
---|
294 | |
---|
295 | msn_buddy_list_add( ic, MSN_BUDDY_BL, who, who, NULL ); |
---|
296 | |
---|
297 | /* If there's still a conversation with this person, close it. */ |
---|
298 | if( ( sb = msn_sb_by_handle( ic, who ) ) ) |
---|
299 | { |
---|
300 | msn_sb_destroy( sb ); |
---|
301 | } |
---|
302 | } |
---|
303 | |
---|
304 | static void msn_rem_deny( struct im_connection *ic, char *who ) |
---|
305 | { |
---|
306 | msn_buddy_list_remove( ic, MSN_BUDDY_BL, who, NULL ); |
---|
307 | } |
---|
308 | |
---|
309 | static int msn_send_typing( struct im_connection *ic, char *who, int typing ) |
---|
310 | { |
---|
311 | struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who ); |
---|
312 | |
---|
313 | if( !( bu->flags & BEE_USER_ONLINE ) ) |
---|
314 | return 0; |
---|
315 | else if( typing & OPT_TYPING ) |
---|
316 | return( msn_buddy_msg( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) ); |
---|
317 | else |
---|
318 | return 1; |
---|
319 | } |
---|
320 | |
---|
321 | static char *set_eval_display_name( set_t *set, char *value ) |
---|
322 | { |
---|
323 | account_t *acc = set->data; |
---|
324 | struct im_connection *ic = acc->ic; |
---|
325 | struct msn_data *md = ic->proto_data; |
---|
326 | |
---|
327 | if( md->flags & MSN_EMAIL_UNVERIFIED ) |
---|
328 | imcb_log( ic, "Warning: Your e-mail address is unverified. MSN doesn't allow " |
---|
329 | "changing your display name until your e-mail address is verified." ); |
---|
330 | |
---|
331 | if( md->flags & MSN_GOT_PROFILE_DN ) |
---|
332 | msn_soap_profile_set_dn( ic, value ); |
---|
333 | else |
---|
334 | msn_soap_addressbook_set_display_name( ic, value ); |
---|
335 | |
---|
336 | return msn_ns_set_display_name( ic, value ) ? value : NULL; |
---|
337 | } |
---|
338 | |
---|
339 | static void msn_buddy_data_add( bee_user_t *bu ) |
---|
340 | { |
---|
341 | struct msn_data *md = bu->ic->proto_data; |
---|
342 | bu->data = g_new0( struct msn_buddy_data, 1 ); |
---|
343 | g_tree_insert( md->domaintree, bu->handle, bu ); |
---|
344 | } |
---|
345 | |
---|
346 | static void msn_buddy_data_free( bee_user_t *bu ) |
---|
347 | { |
---|
348 | struct msn_data *md = bu->ic->proto_data; |
---|
349 | struct msn_buddy_data *bd = bu->data; |
---|
350 | |
---|
351 | g_free( bd->cid ); |
---|
352 | g_free( bd ); |
---|
353 | |
---|
354 | g_tree_remove( md->domaintree, bu->handle ); |
---|
355 | } |
---|
356 | |
---|
357 | GList *msn_buddy_action_list( bee_user_t *bu ) |
---|
358 | { |
---|
359 | static GList *ret = NULL; |
---|
360 | |
---|
361 | if( ret == NULL ) |
---|
362 | { |
---|
363 | static const struct buddy_action ba[2] = { |
---|
364 | { "NUDGE", "Draw attention" }, |
---|
365 | }; |
---|
366 | |
---|
367 | ret = g_list_prepend( ret, (void*) ba + 0 ); |
---|
368 | } |
---|
369 | |
---|
370 | return ret; |
---|
371 | } |
---|
372 | |
---|
373 | void *msn_buddy_action( struct bee_user *bu, const char *action, char * const args[], void *data ) |
---|
374 | { |
---|
375 | if( g_strcasecmp( action, "NUDGE" ) == 0 ) |
---|
376 | msn_buddy_msg( bu->ic, bu->handle, NUDGE_MESSAGE, 0 ); |
---|
377 | |
---|
378 | return NULL; |
---|
379 | } |
---|
380 | |
---|
381 | void msn_initmodule() |
---|
382 | { |
---|
383 | struct prpl *ret = g_new0(struct prpl, 1); |
---|
384 | |
---|
385 | ret->name = "msn"; |
---|
386 | ret->mms = 1409; /* this guess taken from libotr UPGRADING file */ |
---|
387 | ret->login = msn_login; |
---|
388 | ret->init = msn_init; |
---|
389 | ret->logout = msn_logout; |
---|
390 | ret->buddy_msg = msn_buddy_msg; |
---|
391 | ret->away_states = msn_away_states; |
---|
392 | ret->set_away = msn_set_away; |
---|
393 | ret->get_info = msn_get_info; |
---|
394 | ret->add_buddy = msn_add_buddy; |
---|
395 | ret->remove_buddy = msn_remove_buddy; |
---|
396 | ret->chat_msg = msn_chat_msg; |
---|
397 | ret->chat_invite = msn_chat_invite; |
---|
398 | ret->chat_leave = msn_chat_leave; |
---|
399 | ret->chat_with = msn_chat_with; |
---|
400 | ret->keepalive = msn_keepalive; |
---|
401 | ret->add_permit = msn_add_permit; |
---|
402 | ret->rem_permit = msn_rem_permit; |
---|
403 | ret->add_deny = msn_add_deny; |
---|
404 | ret->rem_deny = msn_rem_deny; |
---|
405 | ret->send_typing = msn_send_typing; |
---|
406 | ret->handle_cmp = g_strcasecmp; |
---|
407 | ret->buddy_data_add = msn_buddy_data_add; |
---|
408 | ret->buddy_data_free = msn_buddy_data_free; |
---|
409 | ret->buddy_action_list = msn_buddy_action_list; |
---|
410 | ret->buddy_action = msn_buddy_action; |
---|
411 | |
---|
412 | //ret->transfer_request = msn_ftp_transfer_request; |
---|
413 | |
---|
414 | register_protocol(ret); |
---|
415 | } |
---|