source: protocols/msn/msn.c @ bae0617

Last change on this file since bae0617 was bae0617, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-09-03T21:24:58Z

Rearrange things a bit to support multiple NS connections. This is apparently
needed for refreshing auth. tokens.

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