source: protocols/msn/msn.c @ 4255320

Last change on this file since 4255320 was 4255320, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-07-27T22:18:27Z

MSN: Don't show any "special" messages when breaking down switchboards with
queued messages. They were never supposed to be seen by the user. Also,
don't send them all to offline users.

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