source: protocols/msn/msn.c @ 7f34ce2

Last change on this file since 7f34ce2 was 7f34ce2, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-08-11T23:03:33Z

Get contact list/address book info. Next step: We have to send it back.
Seriously. Wish I were joking.

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