source: protocols/msn/msn.c @ 27053b5

Last change on this file since 27053b5 was 27053b5, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-09-04T17:13:55Z

Finish re-authentication works. Should now work for OIMs as well.

  • Property mode set to 100644
File size: 9.9 KB
Line 
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
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               
95                for( i = 0; i < sizeof( md->tokens ) / sizeof( md->tokens[0] ); i ++ )
96                        g_free( md->tokens[i] );
97                g_free( md->lock_key );
98                g_free( md->pp_policy );
99               
100                while( md->groups )
101                {
102                        struct msn_group *mg = md->groups->data;
103                        g_free( mg->id );
104                        g_free( mg->name );
105                        g_free( mg );
106                        md->groups = g_slist_remove( md->groups, mg );
107                }
108               
109                g_tree_destroy( md->domaintree );
110                md->domaintree = NULL;
111               
112                while( md->grpq )
113                {
114                        struct msn_groupadd *ga = md->grpq->data;
115                        g_free( ga->group );
116                        g_free( ga->who );
117                        g_free( ga );
118                        md->grpq = g_slist_remove( md->grpq, ga );
119                }
120               
121                g_free( md );
122        }
123       
124        for( l = ic->permit; l; l = l->next )
125                g_free( l->data );
126        g_slist_free( ic->permit );
127       
128        for( l = ic->deny; l; l = l->next )
129                g_free( l->data );
130        g_slist_free( ic->deny );
131       
132        msn_connections = g_slist_remove( msn_connections, ic );
133}
134
135static int msn_buddy_msg( struct im_connection *ic, char *who, char *message, int away )
136{
137        struct msn_switchboard *sb;
138       
139#ifdef DEBUG
140        if( strcmp( who, "raw" ) == 0 )
141        {
142                msn_ns_write( ic, -1, "%s\r\n", message );
143        }
144        else
145#endif
146        if( ( sb = msn_sb_by_handle( ic, who ) ) )
147        {
148                return( msn_sb_sendmessage( sb, message ) );
149        }
150        else
151        {
152                struct msn_message *m;
153               
154                /* Create a message. We have to arrange a usable switchboard, and send the message later. */
155                m = g_new0( struct msn_message, 1 );
156                m->who = g_strdup( who );
157                m->text = g_strdup( message );
158               
159                return msn_sb_write_msg( ic, m );
160        }
161       
162        return( 0 );
163}
164
165static GList *msn_away_states( struct im_connection *ic )
166{
167        static GList *l = NULL;
168        int i;
169       
170        if( l == NULL )
171                for( i = 0; *msn_away_state_list[i].code; i ++ )
172                        if( *msn_away_state_list[i].name )
173                                l = g_list_append( l, (void*) msn_away_state_list[i].name );
174       
175        return l;
176}
177
178static void msn_set_away( struct im_connection *ic, char *state, char *message )
179{
180        char *uux;
181        struct msn_data *md = ic->proto_data;
182       
183        if( state == NULL )
184                md->away_state = msn_away_state_list;
185        else if( ( md->away_state = msn_away_state_by_name( state ) ) == NULL )
186                md->away_state = msn_away_state_list + 1;
187       
188        if( !msn_ns_write( ic, -1, "CHG %d %s\r\n", ++md->trId, md->away_state->code ) )
189                return;
190       
191        uux = g_markup_printf_escaped( "<Data><PSM>%s</PSM><CurrentMedia></CurrentMedia>"
192                                       "</Data>", message ? message : "" );
193        msn_ns_write( ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen( uux ), uux );
194        g_free( uux );
195}
196
197static void msn_get_info(struct im_connection *ic, char *who) 
198{
199        /* Just make an URL and let the user fetch the info */
200        imcb_log( ic, "%s\n%s: %s%s", _("User Info"), _("For now, fetch yourself"), PROFILE_URL, who );
201}
202
203static void msn_add_buddy( struct im_connection *ic, char *who, char *group )
204{
205        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
206       
207        msn_buddy_list_add( ic, MSN_BUDDY_FL, who, who, group );
208        if( bu && bu->group )
209                msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, bu->group->name );
210}
211
212static void msn_remove_buddy( struct im_connection *ic, char *who, char *group )
213{
214        msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, NULL );
215}
216
217static void msn_chat_msg( struct groupchat *c, char *message, int flags )
218{
219        struct msn_switchboard *sb = msn_sb_by_chat( c );
220       
221        if( sb )
222                msn_sb_sendmessage( sb, message );
223        /* FIXME: Error handling (although this can't happen unless something's
224           already severely broken) disappeared here! */
225}
226
227static void msn_chat_invite( struct groupchat *c, char *who, char *message )
228{
229        struct msn_switchboard *sb = msn_sb_by_chat( c );
230        char buf[1024];
231       
232        if( sb )
233        {
234                g_snprintf( buf, sizeof( buf ), "CAL %d %s\r\n", ++sb->trId, who );
235                msn_sb_write( sb, buf, strlen( buf ) );
236        }
237}
238
239static void msn_chat_leave( struct groupchat *c )
240{
241        struct msn_switchboard *sb = msn_sb_by_chat( c );
242       
243        if( sb )
244                msn_sb_write( sb, "OUT\r\n", 5 );
245}
246
247static struct groupchat *msn_chat_with( struct im_connection *ic, char *who )
248{
249        struct msn_switchboard *sb;
250        struct groupchat *c = imcb_chat_new( ic, who );
251       
252        if( ( sb = msn_sb_by_handle( ic, who ) ) )
253        {
254                debug( "Converting existing switchboard to %s to a groupchat", who );
255                return msn_sb_to_chat( sb );
256        }
257        else
258        {
259                struct msn_message *m;
260               
261                /* Create a magic message. This is quite hackish, but who cares? :-P */
262                m = g_new0( struct msn_message, 1 );
263                m->who = g_strdup( who );
264                m->text = g_strdup( GROUPCHAT_SWITCHBOARD_MESSAGE );
265               
266                msn_sb_write_msg( ic, m );
267
268                return c;
269        }
270}
271
272static void msn_keepalive( struct im_connection *ic )
273{
274        msn_ns_write( ic, -1, "PNG\r\n" );
275}
276
277static void msn_add_permit( struct im_connection *ic, char *who )
278{
279        msn_buddy_list_add( ic, MSN_BUDDY_AL, who, who, NULL );
280}
281
282static void msn_rem_permit( struct im_connection *ic, char *who )
283{
284        msn_buddy_list_remove( ic, MSN_BUDDY_AL, who, NULL );
285}
286
287static void msn_add_deny( struct im_connection *ic, char *who )
288{
289        struct msn_switchboard *sb;
290       
291        msn_buddy_list_add( ic, MSN_BUDDY_BL, who, who, NULL );
292       
293        /* If there's still a conversation with this person, close it. */
294        if( ( sb = msn_sb_by_handle( ic, who ) ) )
295        {
296                msn_sb_destroy( sb );
297        }
298}
299
300static void msn_rem_deny( struct im_connection *ic, char *who )
301{
302        msn_buddy_list_remove( ic, MSN_BUDDY_BL, who, NULL );
303}
304
305static int msn_send_typing( struct im_connection *ic, char *who, int typing )
306{
307        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
308       
309        if( !( bu->flags & BEE_USER_ONLINE ) )
310                return 0;
311        else if( typing & OPT_TYPING )
312                return( msn_buddy_msg( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) );
313        else
314                return 1;
315}
316
317static char *set_eval_display_name( set_t *set, char *value )
318{
319        account_t *acc = set->data;
320        struct im_connection *ic = acc->ic;
321        struct msn_data *md = ic->proto_data;
322       
323        if( strlen( value ) > 129 )
324        {
325                imcb_log( ic, "Maximum name length exceeded" );
326                return NULL;
327        }
328       
329        if( md->flags & MSN_GOT_PROFILE_DN )
330                imcb_log( ic, "Warning: Persistent name changes for this account have to be done "
331                              "in the profile. BitlBee doesn't currently support this." );
332       
333        msn_soap_addressbook_set_display_name( ic, value );
334        return msn_ns_set_display_name( ic, value ) ? value : NULL;
335}
336
337static void msn_buddy_data_add( bee_user_t *bu )
338{
339        struct msn_data *md = bu->ic->proto_data;
340        bu->data = g_new0( struct msn_buddy_data, 1 );
341        g_tree_insert( md->domaintree, bu->handle, bu );
342}
343
344static void msn_buddy_data_free( bee_user_t *bu )
345{
346        struct msn_data *md = bu->ic->proto_data;
347        g_tree_remove( md->domaintree, bu->handle );
348        g_free( bu->data );
349}
350
351void msn_initmodule()
352{
353        struct prpl *ret = g_new0(struct prpl, 1);
354       
355        ret->name = "msn";
356        ret->login = msn_login;
357        ret->init = msn_init;
358        ret->logout = msn_logout;
359        ret->buddy_msg = msn_buddy_msg;
360        ret->away_states = msn_away_states;
361        ret->set_away = msn_set_away;
362        ret->get_info = msn_get_info;
363        ret->add_buddy = msn_add_buddy;
364        ret->remove_buddy = msn_remove_buddy;
365        ret->chat_msg = msn_chat_msg;
366        ret->chat_invite = msn_chat_invite;
367        ret->chat_leave = msn_chat_leave;
368        ret->chat_with = msn_chat_with;
369        ret->keepalive = msn_keepalive;
370        ret->add_permit = msn_add_permit;
371        ret->rem_permit = msn_rem_permit;
372        ret->add_deny = msn_add_deny;
373        ret->rem_deny = msn_rem_deny;
374        ret->send_typing = msn_send_typing;
375        ret->handle_cmp = g_strcasecmp;
376        ret->buddy_data_add = msn_buddy_data_add;
377        ret->buddy_data_free = msn_buddy_data_free;
378       
379        //ret->transfer_request = msn_ftp_transfer_request;
380
381        register_protocol(ret);
382}
Note: See TracBrowser for help on using the repository browser.