source: protocols/msn/msn.c @ ae3dc99

Last change on this file since ae3dc99 was ae3dc99, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-04-24T17:02:07Z

Merging stuff from mainline (1.2.6).

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