source: protocols/msn/msn.c @ 04a927c

Last change on this file since 04a927c was efbc154, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-04-16T09:58:22Z

Merge msn-keepalive, a nice hack (not yet documented) which sends keepalives
to switchboards with offline contacts. This is meant as a work-around for
the current lack of support for offline messaging.

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