source: protocols/msn/msn.c @ 76c89dc7

Last change on this file since 76c89dc7 was 76c89dc7, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-12-12T00:25:17Z

Allow changing MSN display names in server-side profiles. (I.e. the changes
are finally always persistent again.)

  • Property mode set to 100644
File size: 10.1 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2010 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 "soap.h"
28#include "msn.h"
29
30int msn_chat_id;
31GSList *msn_connections;
32GSList *msn_switchboards;
33
34static char *set_eval_display_name( set_t *set, char *value );
35
36static void msn_init( account_t *acc )
37{
38        set_t *s;
39       
40        s = set_add( &acc->set, "display_name", NULL, set_eval_display_name, acc );
41        s->flags |= ACC_SET_NOSAVE | ACC_SET_ONLINE_ONLY;
42       
43        set_add( &acc->set, "mail_notifications", "false", set_eval_bool, acc );
44        set_add( &acc->set, "switchboard_keepalives", "false", set_eval_bool, acc );
45       
46        acc->flags |= ACC_FLAG_AWAY_MESSAGE | ACC_FLAG_STATUS_MESSAGE;
47}
48
49static void msn_login( account_t *acc )
50{
51        struct im_connection *ic = imcb_new( acc );
52        struct msn_data *md = g_new0( struct msn_data, 1 );
53       
54        ic->proto_data = md;
55       
56        if( strchr( acc->user, '@' ) == NULL )
57        {
58                imcb_error( ic, "Invalid account name" );
59                imc_logout( ic, FALSE );
60                return;
61        }
62       
63        md->ic = ic;
64        md->away_state = msn_away_state_list;
65        md->domaintree = g_tree_new( msn_domaintree_cmp );
66        md->ns->fd = -1;
67       
68        msn_connections = g_slist_prepend( msn_connections, ic );
69       
70        imcb_log( ic, "Connecting" );
71        msn_ns_connect( ic, md->ns, MSN_NS_HOST, MSN_NS_PORT );
72}
73
74static void msn_logout( struct im_connection *ic )
75{
76        struct msn_data *md = ic->proto_data;
77        GSList *l;
78        int i;
79       
80        if( md )
81        {
82                /** Disabling MSN ft support for now.
83                while( md->filetransfers ) {
84                        imcb_file_canceled( md->filetransfers->data, "Closing connection" );
85                }
86                */
87               
88                msn_ns_close( md->ns );
89               
90                while( md->switchboards )
91                        msn_sb_destroy( md->switchboards->data );
92               
93                msn_msgq_purge( ic, &md->msgq );
94                msn_soapq_flush( ic, FALSE );
95               
96                for( i = 0; i < sizeof( md->tokens ) / sizeof( md->tokens[0] ); i ++ )
97                        g_free( md->tokens[i] );
98                g_free( md->lock_key );
99                g_free( md->pp_policy );
100               
101                while( md->groups )
102                {
103                        struct msn_group *mg = md->groups->data;
104                        g_free( mg->id );
105                        g_free( mg->name );
106                        g_free( mg );
107                        md->groups = g_slist_remove( md->groups, mg );
108                }
109               
110                g_free( md->profile_rid );
111               
112                g_tree_destroy( md->domaintree );
113                md->domaintree = NULL;
114               
115                while( md->grpq )
116                {
117                        struct msn_groupadd *ga = md->grpq->data;
118                        g_free( ga->group );
119                        g_free( ga->who );
120                        g_free( ga );
121                        md->grpq = g_slist_remove( md->grpq, ga );
122                }
123               
124                g_free( md );
125        }
126       
127        for( l = ic->permit; l; l = l->next )
128                g_free( l->data );
129        g_slist_free( ic->permit );
130       
131        for( l = ic->deny; l; l = l->next )
132                g_free( l->data );
133        g_slist_free( ic->deny );
134       
135        msn_connections = g_slist_remove( msn_connections, ic );
136}
137
138static int msn_buddy_msg( struct im_connection *ic, char *who, char *message, int away )
139{
140        struct msn_switchboard *sb;
141       
142#ifdef DEBUG
143        if( strcmp( who, "raw" ) == 0 )
144        {
145                msn_ns_write( ic, -1, "%s\r\n", message );
146        }
147        else
148#endif
149        if( ( sb = msn_sb_by_handle( ic, who ) ) )
150        {
151                return( msn_sb_sendmessage( sb, message ) );
152        }
153        else
154        {
155                struct msn_message *m;
156               
157                /* Create a message. We have to arrange a usable switchboard, and send the message later. */
158                m = g_new0( struct msn_message, 1 );
159                m->who = g_strdup( who );
160                m->text = g_strdup( message );
161               
162                return msn_sb_write_msg( ic, m );
163        }
164       
165        return( 0 );
166}
167
168static GList *msn_away_states( struct im_connection *ic )
169{
170        static GList *l = NULL;
171        int i;
172       
173        if( l == NULL )
174                for( i = 0; *msn_away_state_list[i].code; i ++ )
175                        if( *msn_away_state_list[i].name )
176                                l = g_list_append( l, (void*) msn_away_state_list[i].name );
177       
178        return l;
179}
180
181static void msn_set_away( struct im_connection *ic, char *state, char *message )
182{
183        char *uux;
184        struct msn_data *md = ic->proto_data;
185       
186        if( state == NULL )
187                md->away_state = msn_away_state_list;
188        else if( ( md->away_state = msn_away_state_by_name( state ) ) == NULL )
189                md->away_state = msn_away_state_list + 1;
190       
191        if( !msn_ns_write( ic, -1, "CHG %d %s\r\n", ++md->trId, md->away_state->code ) )
192                return;
193       
194        uux = g_markup_printf_escaped( "<Data><PSM>%s</PSM><CurrentMedia></CurrentMedia>"
195                                       "</Data>", message ? message : "" );
196        msn_ns_write( ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen( uux ), uux );
197        g_free( uux );
198}
199
200static void msn_get_info(struct im_connection *ic, char *who) 
201{
202        /* Just make an URL and let the user fetch the info */
203        imcb_log( ic, "%s\n%s: %s%s", _("User Info"), _("For now, fetch yourself"), PROFILE_URL, who );
204}
205
206static void msn_add_buddy( struct im_connection *ic, char *who, char *group )
207{
208        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
209       
210        msn_buddy_list_add( ic, MSN_BUDDY_FL, who, who, group );
211        if( bu && bu->group )
212                msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, bu->group->name );
213}
214
215static void msn_remove_buddy( struct im_connection *ic, char *who, char *group )
216{
217        msn_buddy_list_remove( ic, MSN_BUDDY_FL, who, NULL );
218}
219
220static void msn_chat_msg( struct groupchat *c, char *message, int flags )
221{
222        struct msn_switchboard *sb = msn_sb_by_chat( c );
223       
224        if( sb )
225                msn_sb_sendmessage( sb, message );
226        /* FIXME: Error handling (although this can't happen unless something's
227           already severely broken) disappeared here! */
228}
229
230static void msn_chat_invite( struct groupchat *c, char *who, char *message )
231{
232        struct msn_switchboard *sb = msn_sb_by_chat( c );
233        char buf[1024];
234       
235        if( sb )
236        {
237                g_snprintf( buf, sizeof( buf ), "CAL %d %s\r\n", ++sb->trId, who );
238                msn_sb_write( sb, buf, strlen( buf ) );
239        }
240}
241
242static void msn_chat_leave( struct groupchat *c )
243{
244        struct msn_switchboard *sb = msn_sb_by_chat( c );
245       
246        if( sb )
247                msn_sb_write( sb, "OUT\r\n", 5 );
248}
249
250static struct groupchat *msn_chat_with( struct im_connection *ic, char *who )
251{
252        struct msn_switchboard *sb;
253        struct groupchat *c = imcb_chat_new( ic, who );
254       
255        if( ( sb = msn_sb_by_handle( ic, who ) ) )
256        {
257                debug( "Converting existing switchboard to %s to a groupchat", who );
258                return msn_sb_to_chat( sb );
259        }
260        else
261        {
262                struct msn_message *m;
263               
264                /* Create a magic message. This is quite hackish, but who cares? :-P */
265                m = g_new0( struct msn_message, 1 );
266                m->who = g_strdup( who );
267                m->text = g_strdup( GROUPCHAT_SWITCHBOARD_MESSAGE );
268               
269                msn_sb_write_msg( ic, m );
270
271                return c;
272        }
273}
274
275static void msn_keepalive( struct im_connection *ic )
276{
277        msn_ns_write( ic, -1, "PNG\r\n" );
278}
279
280static void msn_add_permit( struct im_connection *ic, char *who )
281{
282        msn_buddy_list_add( ic, MSN_BUDDY_AL, who, who, NULL );
283}
284
285static void msn_rem_permit( struct im_connection *ic, char *who )
286{
287        msn_buddy_list_remove( ic, MSN_BUDDY_AL, who, NULL );
288}
289
290static void msn_add_deny( struct im_connection *ic, char *who )
291{
292        struct msn_switchboard *sb;
293       
294        msn_buddy_list_add( ic, MSN_BUDDY_BL, who, who, NULL );
295       
296        /* If there's still a conversation with this person, close it. */
297        if( ( sb = msn_sb_by_handle( ic, who ) ) )
298        {
299                msn_sb_destroy( sb );
300        }
301}
302
303static void msn_rem_deny( struct im_connection *ic, char *who )
304{
305        msn_buddy_list_remove( ic, MSN_BUDDY_BL, who, NULL );
306}
307
308static int msn_send_typing( struct im_connection *ic, char *who, int typing )
309{
310        struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
311       
312        if( !( bu->flags & BEE_USER_ONLINE ) )
313                return 0;
314        else if( typing & OPT_TYPING )
315                return( msn_buddy_msg( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) );
316        else
317                return 1;
318}
319
320static char *set_eval_display_name( set_t *set, char *value )
321{
322        account_t *acc = set->data;
323        struct im_connection *ic = acc->ic;
324        struct msn_data *md = ic->proto_data;
325       
326        if( md->flags & MSN_EMAIL_UNVERIFIED )
327                imcb_log( ic, "Warning: Your e-mail address is unverified. MSN doesn't allow "
328                              "changing your display name until your e-mail address is verified." );
329       
330        if( md->flags & MSN_GOT_PROFILE_DN )
331                msn_soap_profile_set_dn( ic, value );
332        else
333                msn_soap_addressbook_set_display_name( ic, value );
334       
335        return msn_ns_set_display_name( ic, value ) ? value : NULL;
336}
337
338static void msn_buddy_data_add( bee_user_t *bu )
339{
340        struct msn_data *md = bu->ic->proto_data;
341        bu->data = g_new0( struct msn_buddy_data, 1 );
342        g_tree_insert( md->domaintree, bu->handle, bu );
343}
344
345static void msn_buddy_data_free( bee_user_t *bu )
346{
347        struct msn_data *md = bu->ic->proto_data;
348        struct msn_buddy_data *bd = bu->data;
349       
350        g_free( bd->cid );
351        g_free( bd );
352       
353        g_tree_remove( md->domaintree, bu->handle );
354}
355
356void msn_initmodule()
357{
358        struct prpl *ret = g_new0(struct prpl, 1);
359       
360        ret->name = "msn";
361        ret->mms = 1409;         /* this guess taken from libotr UPGRADING file */
362        ret->login = msn_login;
363        ret->init = msn_init;
364        ret->logout = msn_logout;
365        ret->buddy_msg = msn_buddy_msg;
366        ret->away_states = msn_away_states;
367        ret->set_away = msn_set_away;
368        ret->get_info = msn_get_info;
369        ret->add_buddy = msn_add_buddy;
370        ret->remove_buddy = msn_remove_buddy;
371        ret->chat_msg = msn_chat_msg;
372        ret->chat_invite = msn_chat_invite;
373        ret->chat_leave = msn_chat_leave;
374        ret->chat_with = msn_chat_with;
375        ret->keepalive = msn_keepalive;
376        ret->add_permit = msn_add_permit;
377        ret->rem_permit = msn_rem_permit;
378        ret->add_deny = msn_add_deny;
379        ret->rem_deny = msn_rem_deny;
380        ret->send_typing = msn_send_typing;
381        ret->handle_cmp = g_strcasecmp;
382        ret->buddy_data_add = msn_buddy_data_add;
383        ret->buddy_data_free = msn_buddy_data_free;
384       
385        //ret->transfer_request = msn_ftp_transfer_request;
386
387        register_protocol(ret);
388}
Note: See TracBrowser for help on using the repository browser.