source: protocols/msn/msn.c @ b46769d

Last change on this file since b46769d was ca7de3a, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-08-12T22:13:26Z

Successful login (including contact list sync). \o/

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