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

Last change on this file since 4aa8a04 was 4aa8a04, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-09-04T15:54:52Z

This works (includes some token sabotage code to ease testing), but I just
realised there's probably no need for the additional temporary NS connection.

  • Property mode set to 100644
File size: 10.0 KB
RevLine 
[b7d3cc34]1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
[4e4af1b]4  * Copyright 2002-2010 Wilmer van der Gaast and others                *
[b7d3cc34]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"
[4452e69]27#include "soap.h"
[b7d3cc34]28#include "msn.h"
29
[c6ca3ee]30int msn_chat_id;
31GSList *msn_connections;
32GSList *msn_switchboards;
33
[e3413cc]34static char *set_eval_display_name( set_t *set, char *value );
[911f2eb]35
[0da65d5]36static void msn_init( account_t *acc )
[911f2eb]37{
[4452e69]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       
[e3413cc]43        set_add( &acc->set, "mail_notifications", "false", set_eval_bool, acc );
[efbc154]44        set_add( &acc->set, "switchboard_keepalives", "false", set_eval_bool, acc );
[12767e3]45       
46        acc->flags |= ACC_FLAG_AWAY_MESSAGE | ACC_FLAG_STATUS_MESSAGE;
[911f2eb]47}
48
[0a3c243]49static void msn_login( account_t *acc )
[b7d3cc34]50{
[84b045d]51        struct im_connection *ic = imcb_new( acc );
[b7d3cc34]52        struct msn_data *md = g_new0( struct msn_data, 1 );
53       
[0da65d5]54        ic->proto_data = md;
[b7d3cc34]55       
[0a3c243]56        if( strchr( acc->user, '@' ) == NULL )
[b7d3cc34]57        {
[84b045d]58                imcb_error( ic, "Invalid account name" );
[c2fb3809]59                imc_logout( ic, FALSE );
[b7d3cc34]60                return;
61        }
62       
[0da65d5]63        md->ic = ic;
[2a29eac]64        md->away_state = msn_away_state_list;
[ca7de3a]65        md->domaintree = g_tree_new( msn_domaintree_cmp );
[4aa8a04]66        md->ns->fd = md->auth->fd = -1;
[2a29eac]67       
[bae0617]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 );
[b7d3cc34]72}
73
[0da65d5]74static void msn_logout( struct im_connection *ic )
[b7d3cc34]75{
[0da65d5]76        struct msn_data *md = ic->proto_data;
[b7d3cc34]77        GSList *l;
[80175a1]78        int i;
[b7d3cc34]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               
[bae0617]88                msn_ns_close( md->ns );
89                msn_ns_close( md->auth );
[5a5c926]90               
91                while( md->switchboards )
92                        msn_sb_destroy( md->switchboards->data );
[1053836]93               
[46dca11]94                msn_msgq_purge( ic, &md->msgq );
[5a5c926]95               
[80175a1]96                for( i = 0; i < sizeof( md->tokens ) / sizeof( md->tokens[0] ); i ++ )
97                        g_free( md->tokens[i] );
[ffb6dea]98                g_free( md->lock_key );
[59f5c42a]99               
[ff27648]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               
[ca7de3a]109                g_tree_destroy( md->domaintree );
110                md->domaintree = NULL;
111               
[70ac477]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               
[5a5c926]121                g_free( md );
[b7d3cc34]122        }
123       
[0da65d5]124        for( l = ic->permit; l; l = l->next )
[b7d3cc34]125                g_free( l->data );
[0da65d5]126        g_slist_free( ic->permit );
[b7d3cc34]127       
[0da65d5]128        for( l = ic->deny; l; l = l->next )
[b7d3cc34]129                g_free( l->data );
[0da65d5]130        g_slist_free( ic->deny );
[b7d3cc34]131       
[0da65d5]132        msn_connections = g_slist_remove( msn_connections, ic );
[b7d3cc34]133}
134
[f6c963b]135static int msn_buddy_msg( struct im_connection *ic, char *who, char *message, int away )
[b7d3cc34]136{
137        struct msn_switchboard *sb;
138       
[70ac477]139#ifdef DEBUG
140        if( strcmp( who, "raw" ) == 0 )
141        {
[64768d4]142                msn_ns_write( ic, -1, "%s\r\n", message );
[70ac477]143        }
144        else
145#endif
[0da65d5]146        if( ( sb = msn_sb_by_handle( ic, who ) ) )
[b7d3cc34]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               
[a830512]159                return msn_sb_write_msg( ic, m );
[b7d3cc34]160        }
161       
162        return( 0 );
163}
164
[0da65d5]165static GList *msn_away_states( struct im_connection *ic )
[b7d3cc34]166{
[5e202b0]167        static GList *l = NULL;
[b7d3cc34]168        int i;
169       
[5e202b0]170        if( l == NULL )
[b051d39]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 );
[b7d3cc34]174       
[5e202b0]175        return l;
[b7d3cc34]176}
177
[0da65d5]178static void msn_set_away( struct im_connection *ic, char *state, char *message )
[b7d3cc34]179{
[12767e3]180        char *uux;
[0da65d5]181        struct msn_data *md = ic->proto_data;
[b7d3cc34]182       
[4aa8a04]183        strcpy( md->tokens[1], md->tokens[2] );
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       
[64768d4]190        if( !msn_ns_write( ic, -1, "CHG %d %s\r\n", ++md->trId, md->away_state->code ) )
[12767e3]191                return;
192       
193        uux = g_markup_printf_escaped( "<Data><PSM>%s</PSM><CurrentMedia></CurrentMedia>"
194                                       "</Data>", message ? message : "" );
[64768d4]195        msn_ns_write( ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen( uux ), uux );
196        g_free( uux );
[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       
[193dc74]209        msn_buddy_list_add( ic, MSN_BUDDY_FL, who, who, group );
[8b01217]210        if( bu && bu->group )
[193dc74]211                msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, bu->group->name );
[b7d3cc34]212}
213
[0da65d5]214static void msn_remove_buddy( struct im_connection *ic, char *who, char *group )
[b7d3cc34]215{
[193dc74]216        msn_buddy_list_remove( ic, MSN_BUDDY_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{
[64768d4]276        msn_ns_write( ic, -1, "PNG\r\n" );
[b7d3cc34]277}
278
[0da65d5]279static void msn_add_permit( struct im_connection *ic, char *who )
[b7d3cc34]280{
[193dc74]281        msn_buddy_list_add( ic, MSN_BUDDY_AL, who, who, NULL );
[b7d3cc34]282}
283
[0da65d5]284static void msn_rem_permit( struct im_connection *ic, char *who )
[b7d3cc34]285{
[4aa8a04]286        //msn_buddy_list_remove( ic, MSN_BUDDY_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       
[193dc74]293        msn_buddy_list_add( ic, MSN_BUDDY_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{
[4aa8a04]304        //msn_buddy_list_remove( ic, MSN_BUDDY_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;
[80175a1]323        struct msn_data *md = ic->proto_data;
[911f2eb]324       
325        if( strlen( value ) > 129 )
326        {
[84b045d]327                imcb_log( ic, "Maximum name length exceeded" );
[911f2eb]328                return NULL;
329        }
330       
[80175a1]331        if( md->flags & MSN_GOT_PROFILE_DN )
332                imcb_log( ic, "Warning: Persistent name changes for this account have to be done "
333                              "in the profile. BitlBee doesn't currently support this." );
334       
[4452e69]335        msn_soap_addressbook_set_display_name( ic, value );
[e0e1546]336        return msn_ns_set_display_name( ic, value ) ? value : NULL;
[911f2eb]337}
338
[7f34ce2]339static void msn_buddy_data_add( bee_user_t *bu )
340{
[ca7de3a]341        struct msn_data *md = bu->ic->proto_data;
[7f34ce2]342        bu->data = g_new0( struct msn_buddy_data, 1 );
[ca7de3a]343        g_tree_insert( md->domaintree, bu->handle, bu );
[7f34ce2]344}
345
346static void msn_buddy_data_free( bee_user_t *bu )
347{
[ca7de3a]348        struct msn_data *md = bu->ic->proto_data;
349        g_tree_remove( md->domaintree, bu->handle );
[7f34ce2]350        g_free( bu->data );
351}
352
[0da65d5]353void msn_initmodule()
[b7d3cc34]354{
[7b23afd]355        struct prpl *ret = g_new0(struct prpl, 1);
[911f2eb]356       
[7b23afd]357        ret->name = "msn";
[b7d3cc34]358        ret->login = msn_login;
[0da65d5]359        ret->init = msn_init;
360        ret->logout = msn_logout;
[f6c963b]361        ret->buddy_msg = msn_buddy_msg;
[b7d3cc34]362        ret->away_states = msn_away_states;
363        ret->set_away = msn_set_away;
364        ret->get_info = msn_get_info;
365        ret->add_buddy = msn_add_buddy;
366        ret->remove_buddy = msn_remove_buddy;
[f6c963b]367        ret->chat_msg = msn_chat_msg;
[b7d3cc34]368        ret->chat_invite = msn_chat_invite;
369        ret->chat_leave = msn_chat_leave;
[0da65d5]370        ret->chat_with = msn_chat_with;
[b7d3cc34]371        ret->keepalive = msn_keepalive;
372        ret->add_permit = msn_add_permit;
373        ret->rem_permit = msn_rem_permit;
374        ret->add_deny = msn_add_deny;
375        ret->rem_deny = msn_rem_deny;
376        ret->send_typing = msn_send_typing;
[5b52a48]377        ret->handle_cmp = g_strcasecmp;
[7f34ce2]378        ret->buddy_data_add = msn_buddy_data_add;
379        ret->buddy_data_free = msn_buddy_data_free;
380       
[17a6ee9]381        //ret->transfer_request = msn_ftp_transfer_request;
[b7d3cc34]382
[7b23afd]383        register_protocol(ret);
[b7d3cc34]384}
Note: See TracBrowser for help on using the repository browser.