source: protocols/msn/msn.c @ b5b40ff

Last change on this file since b5b40ff was e8c8d00, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-03-17T15:15:19Z

Merging mainline.

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