source: protocols/msn/msn.c @ 4c9d377

Last change on this file since 4c9d377 was 208db4b, checked in by Wilmer van der Gaast <wilmer@…>, at 2012-09-29T19:38:18Z

Support for sending messages to federated contacts. They don't seem to arrive
but Pidgin seems to have the same problem.

  • Property mode set to 100644
File size: 12.2 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2012 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
30int msn_chat_id;
31GSList *msn_connections;
32GSList *msn_switchboards;
33
34static char *set_eval_display_name( set_t *set, char *value );
35
36static 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
49static 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
74static 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                g_free( md->uuid );
101               
102                while( md->groups )
103                {
104                        struct msn_group *mg = md->groups->data;
105                        g_free( mg->id );
106                        g_free( mg->name );
107                        g_free( mg );
108                        md->groups = g_slist_remove( md->groups, mg );
109                }
110               
111                g_free( md->profile_rid );
112               
113                if( md->domaintree )
114                        g_tree_destroy( md->domaintree );
115                md->domaintree = NULL;
116               
117                while( md->grpq )
118                {
119                        struct msn_groupadd *ga = md->grpq->data;
120                        g_free( ga->group );
121                        g_free( ga->who );
122                        g_free( ga );
123                        md->grpq = g_slist_remove( md->grpq, ga );
124                }
125               
126                g_free( md );
127        }
128       
129        for( l = ic->permit; l; l = l->next )
130                g_free( l->data );
131        g_slist_free( ic->permit );
132       
133        for( l = ic->deny; l; l = l->next )
134                g_free( l->data );
135        g_slist_free( ic->deny );
136       
137        msn_connections = g_slist_remove( msn_connections, ic );
138}
139
140static int msn_buddy_msg( struct im_connection *ic, char *who, char *message, int away )
141{
142        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
143        struct msn_buddy_data *bd = bu ? bu->data : NULL;
144        struct msn_switchboard *sb;
145       
146#ifdef DEBUG
147        if( strcmp( who, "raw" ) == 0 )
148        {
149                msn_ns_write( ic, -1, "%s\r\n", message );
150        }
151        else
152#endif
153        if( bd && bd->flags & MSN_BUDDY_FED )
154        {
155                msn_ns_sendmessage( ic, bu, message );
156        }
157        else if( ( sb = msn_sb_by_handle( ic, who ) ) )
158        {
159                return( msn_sb_sendmessage( sb, message ) );
160        }
161        else
162        {
163                struct msn_message *m;
164               
165                /* Create a message. We have to arrange a usable switchboard, and send the message later. */
166                m = g_new0( struct msn_message, 1 );
167                m->who = g_strdup( who );
168                m->text = g_strdup( message );
169               
170                return msn_sb_write_msg( ic, m );
171        }
172       
173        return( 0 );
174}
175
176static GList *msn_away_states( struct im_connection *ic )
177{
178        static GList *l = NULL;
179        int i;
180       
181        if( l == NULL )
182                for( i = 0; *msn_away_state_list[i].code; i ++ )
183                        if( *msn_away_state_list[i].name )
184                                l = g_list_append( l, (void*) msn_away_state_list[i].name );
185       
186        return l;
187}
188
189static void msn_set_away( struct im_connection *ic, char *state, char *message )
190{
191        char *uux;
192        struct msn_data *md = ic->proto_data;
193       
194        if( state == NULL )
195                md->away_state = msn_away_state_list;
196        else if( ( md->away_state = msn_away_state_by_name( state ) ) == NULL )
197                md->away_state = msn_away_state_list + 1;
198       
199        if( !msn_ns_write( ic, -1, "CHG %d %s %d:%02d\r\n", ++md->trId, md->away_state->code, MSN_CAP1, MSN_CAP2 ) )
200                return;
201       
202        uux = g_markup_printf_escaped( "<EndpointData><Capabilities>%d:%02d"
203                                       "</Capabilities></EndpointData>",
204                                       MSN_CAP1, MSN_CAP2 );
205        msn_ns_write( ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen( uux ), uux );
206        g_free( uux );
207       
208        uux = g_markup_printf_escaped( "<PrivateEndpointData><EpName>%s</EpName>"
209                                       "<Idle>%s</Idle><ClientType>%d</ClientType>"
210                                       "<State>%s</State></PrivateEndpointData>",
211                                       md->uuid,
212                                       strcmp( md->away_state->code, "IDL" ) ? "false" : "true",
213                                       1, /* ? */
214                                       md->away_state->code );
215        msn_ns_write( ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen( uux ), uux );
216        g_free( uux );
217       
218        uux = g_markup_printf_escaped( "<Data><DDP></DDP><PSM>%s</PSM>"
219                                       "<CurrentMedia></CurrentMedia>"
220                                       "<MachineGuid>%s</MachineGuid></Data>",
221                                       message ? message : "", md->uuid );
222        msn_ns_write( ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen( uux ), uux );
223        g_free( uux );
224}
225
226static void msn_get_info(struct im_connection *ic, char *who) 
227{
228        /* Just make an URL and let the user fetch the info */
229        imcb_log( ic, "%s\n%s: %s%s", _("User Info"), _("For now, fetch yourself"), PROFILE_URL, who );
230}
231
232static void msn_add_buddy( struct im_connection *ic, char *who, char *group )
233{
234        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
235       
236        msn_buddy_list_add( ic, MSN_BUDDY_FL, who, who, group );
237        if( bu && bu->group )
238                msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, bu->group->name );
239}
240
241static void msn_remove_buddy( struct im_connection *ic, char *who, char *group )
242{
243        msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, NULL );
244}
245
246static void msn_chat_msg( struct groupchat *c, char *message, int flags )
247{
248        struct msn_switchboard *sb = msn_sb_by_chat( c );
249       
250        if( sb )
251                msn_sb_sendmessage( sb, message );
252        /* FIXME: Error handling (although this can't happen unless something's
253           already severely broken) disappeared here! */
254}
255
256static void msn_chat_invite( struct groupchat *c, char *who, char *message )
257{
258        struct msn_switchboard *sb = msn_sb_by_chat( c );
259       
260        if( sb )
261                msn_sb_write( sb, "CAL %d %s\r\n", ++sb->trId, who );
262}
263
264static void msn_chat_leave( struct groupchat *c )
265{
266        struct msn_switchboard *sb = msn_sb_by_chat( c );
267       
268        if( sb )
269                msn_sb_write( sb, "OUT\r\n" );
270}
271
272static struct groupchat *msn_chat_with( struct im_connection *ic, char *who )
273{
274        struct msn_switchboard *sb;
275        struct groupchat *c = imcb_chat_new( ic, who );
276       
277        if( ( sb = msn_sb_by_handle( ic, who ) ) )
278        {
279                debug( "Converting existing switchboard to %s to a groupchat", who );
280                return msn_sb_to_chat( sb );
281        }
282        else
283        {
284                struct msn_message *m;
285               
286                /* Create a magic message. This is quite hackish, but who cares? :-P */
287                m = g_new0( struct msn_message, 1 );
288                m->who = g_strdup( who );
289                m->text = g_strdup( GROUPCHAT_SWITCHBOARD_MESSAGE );
290               
291                msn_sb_write_msg( ic, m );
292
293                return c;
294        }
295}
296
297static void msn_keepalive( struct im_connection *ic )
298{
299        msn_ns_write( ic, -1, "PNG\r\n" );
300}
301
302static void msn_add_permit( struct im_connection *ic, char *who )
303{
304        msn_buddy_list_add( ic, MSN_BUDDY_AL, who, who, NULL );
305}
306
307static void msn_rem_permit( struct im_connection *ic, char *who )
308{
309        msn_buddy_list_remove( ic, MSN_BUDDY_AL, who, NULL );
310}
311
312static void msn_add_deny( struct im_connection *ic, char *who )
313{
314        struct msn_switchboard *sb;
315       
316        msn_buddy_list_add( ic, MSN_BUDDY_BL, who, who, NULL );
317       
318        /* If there's still a conversation with this person, close it. */
319        if( ( sb = msn_sb_by_handle( ic, who ) ) )
320        {
321                msn_sb_destroy( sb );
322        }
323}
324
325static void msn_rem_deny( struct im_connection *ic, char *who )
326{
327        msn_buddy_list_remove( ic, MSN_BUDDY_BL, who, NULL );
328}
329
330static int msn_send_typing( struct im_connection *ic, char *who, int typing )
331{
332        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
333       
334        if( !( bu->flags & BEE_USER_ONLINE ) )
335                return 0;
336        else if( typing & OPT_TYPING )
337                return( msn_buddy_msg( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) );
338        else
339                return 1;
340}
341
342static char *set_eval_display_name( set_t *set, char *value )
343{
344        account_t *acc = set->data;
345        struct im_connection *ic = acc->ic;
346        struct msn_data *md = ic->proto_data;
347       
348        if( md->flags & MSN_EMAIL_UNVERIFIED )
349                imcb_log( ic, "Warning: Your e-mail address is unverified. MSN doesn't allow "
350                              "changing your display name until your e-mail address is verified." );
351       
352        if( md->flags & MSN_GOT_PROFILE_DN )
353                msn_soap_profile_set_dn( ic, value );
354        else
355                msn_soap_addressbook_set_display_name( ic, value );
356       
357        return msn_ns_set_display_name( ic, value ) ? value : NULL;
358}
359
360static void msn_buddy_data_add( bee_user_t *bu )
361{
362        struct msn_data *md = bu->ic->proto_data;
363        struct msn_buddy_data *bd;
364        char *handle;
365       
366        bd = bu->data = g_new0( struct msn_buddy_data, 1 );
367        g_tree_insert( md->domaintree, bu->handle, bu );
368       
369        for( handle = bu->handle; isdigit( *handle ); handle ++ );
370        if( *handle == ':' )
371        {
372                /* Pass a nick hint so hopefully the stupid numeric prefix
373                   won't show up to the user.  */
374                char *s = strchr( ++handle, '@' );
375                if( s )
376                {
377                        handle = g_strndup( handle, s - handle );
378                        imcb_buddy_nick_hint( bu->ic, bu->handle, handle );
379                        g_free( handle );
380                }
381               
382                bd->flags |= MSN_BUDDY_FED;
383        }
384}
385
386static void msn_buddy_data_free( bee_user_t *bu )
387{
388        struct msn_data *md = bu->ic->proto_data;
389        struct msn_buddy_data *bd = bu->data;
390       
391        g_free( bd->cid );
392        g_free( bd );
393       
394        g_tree_remove( md->domaintree, bu->handle );
395}
396
397GList *msn_buddy_action_list( bee_user_t *bu )
398{
399        static GList *ret = NULL;
400       
401        if( ret == NULL )
402        {
403                static const struct buddy_action ba[2] = {
404                        { "NUDGE", "Draw attention" },
405                };
406               
407                ret = g_list_prepend( ret, (void*) ba + 0 );
408        }
409       
410        return ret;
411}
412
413void *msn_buddy_action( struct bee_user *bu, const char *action, char * const args[], void *data )
414{
415        if( g_strcasecmp( action, "NUDGE" ) == 0 )
416                msn_buddy_msg( bu->ic, bu->handle, NUDGE_MESSAGE, 0 );
417       
418        return NULL;
419}
420
421void msn_initmodule()
422{
423        struct prpl *ret = g_new0(struct prpl, 1);
424       
425        ret->name = "msn";
426        ret->mms = 1409;         /* this guess taken from libotr UPGRADING file */
427        ret->login = msn_login;
428        ret->init = msn_init;
429        ret->logout = msn_logout;
430        ret->buddy_msg = msn_buddy_msg;
431        ret->away_states = msn_away_states;
432        ret->set_away = msn_set_away;
433        ret->get_info = msn_get_info;
434        ret->add_buddy = msn_add_buddy;
435        ret->remove_buddy = msn_remove_buddy;
436        ret->chat_msg = msn_chat_msg;
437        ret->chat_invite = msn_chat_invite;
438        ret->chat_leave = msn_chat_leave;
439        ret->chat_with = msn_chat_with;
440        ret->keepalive = msn_keepalive;
441        ret->add_permit = msn_add_permit;
442        ret->rem_permit = msn_rem_permit;
443        ret->add_deny = msn_add_deny;
444        ret->rem_deny = msn_rem_deny;
445        ret->send_typing = msn_send_typing;
446        ret->handle_cmp = g_strcasecmp;
447        ret->buddy_data_add = msn_buddy_data_add;
448        ret->buddy_data_free = msn_buddy_data_free;
449        ret->buddy_action_list = msn_buddy_action_list;
450        ret->buddy_action = msn_buddy_action;
451       
452        //ret->transfer_request = msn_ftp_transfer_request;
453
454        register_protocol(ret);
455}
Note: See TracBrowser for help on using the repository browser.