source: protocols/msn/msn.c @ 7db65b7

Last change on this file since 7db65b7 was 2528cda, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-08-08T15:34:49Z

Merging msn-offline branch. A tiny bit of MSNP13, and it works for the first
minute of the session (after that the MSN server finds out the rest of
BitlBee still speaks MSNP8).

  • Property mode set to 100644
File size: 9.3 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2004 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 "msn.h"
28
29int msn_chat_id;
30GSList *msn_connections;
31GSList *msn_switchboards;
32
33static char *set_eval_display_name( set_t *set, char *value );
34
35static void msn_init( account_t *acc )
36{
37        set_add( &acc->set, "display_name", NULL, set_eval_display_name, acc );
38        set_add( &acc->set, "local_display_name", "false", set_eval_bool, acc );
39        set_add( &acc->set, "mail_notifications", "false", set_eval_bool, acc );
40        set_add( &acc->set, "switchboard_keepalives", "false", set_eval_bool, acc );
41}
42
43static void msn_login( account_t *acc )
44{
45        struct im_connection *ic = imcb_new( acc );
46        struct msn_data *md = g_new0( struct msn_data, 1 );
47       
48        ic->proto_data = md;
49        md->fd = -1;
50       
51        if( strchr( acc->user, '@' ) == NULL )
52        {
53                imcb_error( ic, "Invalid account name" );
54                imc_logout( ic, FALSE );
55                return;
56        }
57       
58        imcb_log( ic, "Connecting" );
59       
60        md->fd = proxy_connect( "messenger.hotmail.com", 1863, msn_ns_connected, ic );
61        if( md->fd < 0 )
62        {
63                imcb_error( ic, "Could not connect to server" );
64                imc_logout( ic, TRUE );
65                return;
66        }
67       
68        md->ic = ic;
69        md->away_state = msn_away_state_list;
70       
71        msn_connections = g_slist_append( msn_connections, ic );
72}
73
74static void msn_logout( struct im_connection *ic )
75{
76        struct msn_data *md = ic->proto_data;
77        GSList *l;
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                if( md->fd >= 0 )
88                        closesocket( md->fd );
89               
90                if( md->handler )
91                {
92                        if( md->handler->rxq ) g_free( md->handler->rxq );
93                        if( md->handler->cmd_text ) g_free( md->handler->cmd_text );
94                        g_free( md->handler );
95                }
96               
97                while( md->switchboards )
98                        msn_sb_destroy( md->switchboards->data );
99               
100                msn_msgq_purge( ic, &md->msgq );
101               
102                while( md->groupcount > 0 )
103                        g_free( md->grouplist[--md->groupcount] );
104                g_free( md->grouplist );
105                g_free( md->passport_token );
106                g_free( md->lock_key );
107               
108                while( md->grpq )
109                {
110                        struct msn_groupadd *ga = md->grpq->data;
111                        g_free( ga->group );
112                        g_free( ga->who );
113                        g_free( ga );
114                        md->grpq = g_slist_remove( md->grpq, ga );
115                }
116               
117                g_free( md );
118        }
119       
120        for( l = ic->permit; l; l = l->next )
121                g_free( l->data );
122        g_slist_free( ic->permit );
123       
124        for( l = ic->deny; l; l = l->next )
125                g_free( l->data );
126        g_slist_free( ic->deny );
127       
128        msn_connections = g_slist_remove( msn_connections, ic );
129}
130
131static int msn_buddy_msg( struct im_connection *ic, char *who, char *message, int away )
132{
133        struct msn_switchboard *sb;
134       
135#ifdef DEBUG
136        if( strcmp( who, "raw" ) == 0 )
137        {
138                msn_write( ic, message, strlen( message ) );
139                msn_write( ic, "\r\n", 2 );
140        }
141        else
142#endif
143        if( ( sb = msn_sb_by_handle( ic, who ) ) )
144        {
145                return( msn_sb_sendmessage( sb, message ) );
146        }
147        else
148        {
149                struct msn_message *m;
150               
151                /* Create a message. We have to arrange a usable switchboard, and send the message later. */
152                m = g_new0( struct msn_message, 1 );
153                m->who = g_strdup( who );
154                m->text = g_strdup( message );
155               
156                return msn_sb_write_msg( ic, m );
157        }
158       
159        return( 0 );
160}
161
162static GList *msn_away_states( struct im_connection *ic )
163{
164        static GList *l = NULL;
165        int i;
166       
167        if( l == NULL )
168                for( i = 0; *msn_away_state_list[i].code; i ++ )
169                        if( *msn_away_state_list[i].name )
170                                l = g_list_append( l, (void*) msn_away_state_list[i].name );
171       
172        return l;
173}
174
175static void msn_set_away( struct im_connection *ic, char *state, char *message )
176{
177        char buf[1024];
178        struct msn_data *md = ic->proto_data;
179       
180        if( state == NULL )
181                md->away_state = msn_away_state_list;
182        else if( ( md->away_state = msn_away_state_by_name( state ) ) == NULL )
183                md->away_state = msn_away_state_list + 1;
184       
185        g_snprintf( buf, sizeof( buf ), "CHG %d %s\r\n", ++md->trId, md->away_state->code );
186        msn_write( ic, buf, strlen( buf ) );
187}
188
189static void msn_set_my_name( struct im_connection *ic, char *info )
190{
191        msn_set_display_name( ic, info );
192}
193
194static void msn_get_info(struct im_connection *ic, char *who) 
195{
196        /* Just make an URL and let the user fetch the info */
197        imcb_log( ic, "%s\n%s: %s%s", _("User Info"), _("For now, fetch yourself"), PROFILE_URL, who );
198}
199
200static void msn_add_buddy( struct im_connection *ic, char *who, char *group )
201{
202        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
203       
204        msn_buddy_list_add( ic, "FL", who, who, group );
205        if( bu && bu->group )
206                msn_buddy_list_remove( ic, "FL", who, bu->group->name );
207}
208
209static void msn_remove_buddy( struct im_connection *ic, char *who, char *group )
210{
211        msn_buddy_list_remove( ic, "FL", who, NULL );
212}
213
214static void msn_chat_msg( struct groupchat *c, char *message, int flags )
215{
216        struct msn_switchboard *sb = msn_sb_by_chat( c );
217       
218        if( sb )
219                msn_sb_sendmessage( sb, message );
220        /* FIXME: Error handling (although this can't happen unless something's
221           already severely broken) disappeared here! */
222}
223
224static void msn_chat_invite( struct groupchat *c, char *who, char *message )
225{
226        struct msn_switchboard *sb = msn_sb_by_chat( c );
227        char buf[1024];
228       
229        if( sb )
230        {
231                g_snprintf( buf, sizeof( buf ), "CAL %d %s\r\n", ++sb->trId, who );
232                msn_sb_write( sb, buf, strlen( buf ) );
233        }
234}
235
236static void msn_chat_leave( struct groupchat *c )
237{
238        struct msn_switchboard *sb = msn_sb_by_chat( c );
239       
240        if( sb )
241                msn_sb_write( sb, "OUT\r\n", 5 );
242}
243
244static struct groupchat *msn_chat_with( struct im_connection *ic, char *who )
245{
246        struct msn_switchboard *sb;
247        struct groupchat *c = imcb_chat_new( ic, who );
248       
249        if( ( sb = msn_sb_by_handle( ic, who ) ) )
250        {
251                debug( "Converting existing switchboard to %s to a groupchat", who );
252                return msn_sb_to_chat( sb );
253        }
254        else
255        {
256                struct msn_message *m;
257               
258                /* Create a magic message. This is quite hackish, but who cares? :-P */
259                m = g_new0( struct msn_message, 1 );
260                m->who = g_strdup( who );
261                m->text = g_strdup( GROUPCHAT_SWITCHBOARD_MESSAGE );
262               
263                msn_sb_write_msg( ic, m );
264
265                return c;
266        }
267}
268
269static void msn_keepalive( struct im_connection *ic )
270{
271        msn_write( ic, "PNG\r\n", strlen( "PNG\r\n" ) );
272}
273
274static void msn_add_permit( struct im_connection *ic, char *who )
275{
276        msn_buddy_list_add( ic, "AL", who, who, NULL );
277}
278
279static void msn_rem_permit( struct im_connection *ic, char *who )
280{
281        msn_buddy_list_remove( ic, "AL", who, NULL );
282}
283
284static void msn_add_deny( struct im_connection *ic, char *who )
285{
286        struct msn_switchboard *sb;
287       
288        msn_buddy_list_add( ic, "BL", who, who, NULL );
289       
290        /* If there's still a conversation with this person, close it. */
291        if( ( sb = msn_sb_by_handle( ic, who ) ) )
292        {
293                msn_sb_destroy( sb );
294        }
295}
296
297static void msn_rem_deny( struct im_connection *ic, char *who )
298{
299        msn_buddy_list_remove( ic, "BL", who, NULL );
300}
301
302static int msn_send_typing( struct im_connection *ic, char *who, int typing )
303{
304        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
305       
306        if( !( bu->flags & BEE_USER_ONLINE ) )
307                return 0;
308        else if( typing & OPT_TYPING )
309                return( msn_buddy_msg( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) );
310        else
311                return 1;
312}
313
314static char *set_eval_display_name( set_t *set, char *value )
315{
316        account_t *acc = set->data;
317        struct im_connection *ic = acc->ic;
318       
319        /* Allow any name if we're offline. */
320        if( ic == NULL )
321                return value;
322       
323        if( strlen( value ) > 129 )
324        {
325                imcb_log( ic, "Maximum name length exceeded" );
326                return NULL;
327        }
328       
329        /* Returning NULL would be better, because the server still has to
330           confirm the name change. However, it looks a bit confusing to the
331           user. */
332        return msn_set_display_name( ic, value ) ? value : NULL;
333}
334
335void msn_initmodule()
336{
337        struct prpl *ret = g_new0(struct prpl, 1);
338       
339        ret->name = "msn";
340        ret->login = msn_login;
341        ret->init = msn_init;
342        ret->logout = msn_logout;
343        ret->buddy_msg = msn_buddy_msg;
344        ret->away_states = msn_away_states;
345        ret->set_away = msn_set_away;
346        ret->get_info = msn_get_info;
347        ret->set_my_name = msn_set_my_name;
348        ret->add_buddy = msn_add_buddy;
349        ret->remove_buddy = msn_remove_buddy;
350        ret->chat_msg = msn_chat_msg;
351        ret->chat_invite = msn_chat_invite;
352        ret->chat_leave = msn_chat_leave;
353        ret->chat_with = msn_chat_with;
354        ret->keepalive = msn_keepalive;
355        ret->add_permit = msn_add_permit;
356        ret->rem_permit = msn_rem_permit;
357        ret->add_deny = msn_add_deny;
358        ret->rem_deny = msn_rem_deny;
359        ret->send_typing = msn_send_typing;
360        ret->handle_cmp = g_strcasecmp;
361        //ret->transfer_request = msn_ftp_transfer_request;
362
363        register_protocol(ret);
364}
Note: See TracBrowser for help on using the repository browser.