source: protocols/msn/msn.c @ 21029d0

Last change on this file since 21029d0 was fb00989, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-03-14T17:55:27Z

Adding a few consts and other misc fixes from bug #431. Doing this via a
merge because bzr can probably deal with the conflicts better than patch.

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