source: protocols/msn/msn.c @ 9d4352c

Last change on this file since 9d4352c was 21c87a7, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-04-14T09:27:50Z

Merging loads of stuff from mainline.

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