source: protocols/msn/ns.c @ b46769d

Last change on this file since b46769d was b46769d, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-08-12T22:44:56Z

Some syntax checking fixups; don't make the same mistake of failing just if
the MSN server is sending a little bit *more* info.
And adding xt_insert_node() used in the ADL generation code.

  • Property mode set to 100644
File size: 20.0 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 - Notification server callbacks                           */
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 <ctype.h>
27#include "nogaim.h"
28#include "msn.h"
29#include "md5.h"
30#include "soap.h"
31#include "xmltree.h"
32
33static gboolean msn_ns_callback( gpointer data, gint source, b_input_condition cond );
34static int msn_ns_command( gpointer data, char **cmd, int num_parts );
35static int msn_ns_message( gpointer data, char *msg, int msglen, char **cmd, int num_parts );
36
37static gboolean msn_ns_got_display_name( struct im_connection *ic, char *name );
38static void msn_ns_send_adl( struct im_connection *ic );
39
40gboolean msn_ns_connected( gpointer data, gint source, b_input_condition cond )
41{
42        struct im_connection *ic = data;
43        struct msn_data *md;
44        char s[1024];
45       
46        if( !g_slist_find( msn_connections, ic ) )
47                return FALSE;
48       
49        if( source == -1 )
50        {
51                imcb_error( ic, "Could not connect to server" );
52                imc_logout( ic, TRUE );
53                return FALSE;
54        }
55       
56        md = ic->proto_data;
57       
58        if( !md->handler )
59        {
60                md->handler = g_new0( struct msn_handler_data, 1 );
61                md->handler->data = ic;
62                md->handler->exec_command = msn_ns_command;
63                md->handler->exec_message = msn_ns_message;
64        }
65        else
66        {
67                if( md->handler->rxq )
68                        g_free( md->handler->rxq );
69               
70                md->handler->rxlen = 0;
71        }
72       
73        md->handler->fd = md->fd;
74        md->handler->rxq = g_new0( char, 1 );
75       
76        g_snprintf( s, sizeof( s ), "VER %d MSNP15 CVR0\r\n", ++md->trId );
77        if( msn_write( ic, s, strlen( s ) ) )
78        {
79                ic->inpa = b_input_add( md->fd, B_EV_IO_READ, msn_ns_callback, ic );
80                imcb_log( ic, "Connected to server, waiting for reply" );
81        }
82       
83        return FALSE;
84}
85
86static gboolean msn_ns_callback( gpointer data, gint source, b_input_condition cond )
87{
88        struct im_connection *ic = data;
89        struct msn_data *md = ic->proto_data;
90       
91        if( msn_handler( md->handler ) == -1 ) /* Don't do this on ret == 0, it's already done then. */
92        {
93                imcb_error( ic, "Error while reading from server" );
94                imc_logout( ic, TRUE );
95               
96                return FALSE;
97        }
98        else
99                return TRUE;
100}
101
102static int msn_ns_command( gpointer data, char **cmd, int num_parts )
103{
104        struct im_connection *ic = data;
105        struct msn_data *md = ic->proto_data;
106        char buf[1024];
107       
108        if( num_parts == 0 )
109        {
110                /* Hrrm... Empty command...? Ignore? */
111                return( 1 );
112        }
113       
114        if( strcmp( cmd[0], "VER" ) == 0 )
115        {
116                if( cmd[2] && strncmp( cmd[2], "MSNP15", 5 ) != 0 )
117                {
118                        imcb_error( ic, "Unsupported protocol" );
119                        imc_logout( ic, FALSE );
120                        return( 0 );
121                }
122               
123                g_snprintf( buf, sizeof( buf ), "CVR %d 0x0409 mac 10.2.0 ppc macmsgs 3.5.1 macmsgs %s\r\n",
124                                                ++md->trId, ic->acc->user );
125                return( msn_write( ic, buf, strlen( buf ) ) );
126        }
127        else if( strcmp( cmd[0], "CVR" ) == 0 )
128        {
129                /* We don't give a damn about the information we just received */
130                g_snprintf( buf, sizeof( buf ), "USR %d SSO I %s\r\n", ++md->trId, ic->acc->user );
131                return( msn_write( ic, buf, strlen( buf ) ) );
132        }
133        else if( strcmp( cmd[0], "XFR" ) == 0 )
134        {
135                char *server;
136                int port;
137               
138                if( num_parts >= 6 && strcmp( cmd[2], "NS" ) == 0 )
139                {
140                        b_event_remove( ic->inpa );
141                        ic->inpa = 0;
142                        closesocket( md->fd );
143                       
144                        server = strchr( cmd[3], ':' );
145                        if( !server )
146                        {
147                                imcb_error( ic, "Syntax error" );
148                                imc_logout( ic, TRUE );
149                                return( 0 );
150                        }
151                        *server = 0;
152                        port = atoi( server + 1 );
153                        server = cmd[3];
154                       
155                        imcb_log( ic, "Transferring to other server" );
156                       
157                        md->fd = proxy_connect( server, port, msn_ns_connected, ic );
158                }
159                else if( num_parts >= 6 && strcmp( cmd[2], "SB" ) == 0 )
160                {
161                        struct msn_switchboard *sb;
162                       
163                        server = strchr( cmd[3], ':' );
164                        if( !server )
165                        {
166                                imcb_error( ic, "Syntax error" );
167                                imc_logout( ic, TRUE );
168                                return( 0 );
169                        }
170                        *server = 0;
171                        port = atoi( server + 1 );
172                        server = cmd[3];
173                       
174                        if( strcmp( cmd[4], "CKI" ) != 0 )
175                        {
176                                imcb_error( ic, "Unknown authentication method for switchboard" );
177                                imc_logout( ic, TRUE );
178                                return( 0 );
179                        }
180                       
181                        debug( "Connecting to a new switchboard with key %s", cmd[5] );
182
183                        if( ( sb = msn_sb_create( ic, server, port, cmd[5], MSN_SB_NEW ) ) == NULL )
184                        {
185                                /* Although this isn't strictly fatal for the NS connection, it's
186                                   definitely something serious (we ran out of file descriptors?). */
187                                imcb_error( ic, "Could not create new switchboard" );
188                                imc_logout( ic, TRUE );
189                                return( 0 );
190                        }
191                       
192                        if( md->msgq )
193                        {
194                                struct msn_message *m = md->msgq->data;
195                                GSList *l;
196                               
197                                sb->who = g_strdup( m->who );
198                               
199                                /* Move all the messages to the first user in the message
200                                   queue to the switchboard message queue. */
201                                l = md->msgq;
202                                while( l )
203                                {
204                                        m = l->data;
205                                        l = l->next;
206                                        if( strcmp( m->who, sb->who ) == 0 )
207                                        {
208                                                sb->msgq = g_slist_append( sb->msgq, m );
209                                                md->msgq = g_slist_remove( md->msgq, m );
210                                        }
211                                }
212                        }
213                }
214                else
215                {
216                        imcb_error( ic, "Syntax error" );
217                        imc_logout( ic, TRUE );
218                        return( 0 );
219                }
220        }
221        else if( strcmp( cmd[0], "USR" ) == 0 )
222        {
223                if( num_parts >= 6 && strcmp( cmd[2], "SSO" ) == 0 &&
224                    strcmp( cmd[3], "S" ) == 0 )
225                {
226                        msn_soap_passport_sso_request( ic, cmd[4], cmd[5] );
227                }
228                else if( strcmp( cmd[2], "OK" ) == 0 )
229                {
230                        imcb_log( ic, "Authenticated, getting buddy list" );
231                        msn_soap_memlist_request( ic );
232                }
233                else
234                {
235                        imcb_error( ic, "Unknown authentication type" );
236                        imc_logout( ic, FALSE );
237                        return( 0 );
238                }
239        }
240        else if( strcmp( cmd[0], "MSG" ) == 0 )
241        {
242                if( num_parts < 4 )
243                {
244                        imcb_error( ic, "Syntax error" );
245                        imc_logout( ic, TRUE );
246                        return( 0 );
247                }
248               
249                md->handler->msglen = atoi( cmd[3] );
250               
251                if( md->handler->msglen <= 0 )
252                {
253                        imcb_error( ic, "Syntax error" );
254                        imc_logout( ic, TRUE );
255                        return( 0 );
256                }
257        }
258        else if( strcmp( cmd[0], "BLP" ) == 0 )
259        {
260                msn_ns_send_adl( ic );
261        }
262        else if( strcmp( cmd[0], "ADL" ) == 0 )
263        {
264                if( num_parts >= 3 && strcmp( cmd[2], "OK" ) == 0 )
265                {
266                        char buf[1024];
267                        char *fn_raw = set_getstr( &ic->acc->set, "display_name" );
268                        char *fn;
269                       
270                        if( fn_raw == NULL )
271                                fn_raw = ic->acc->user;
272                        fn = g_malloc( strlen( fn_raw ) * 3 + 1 );
273                        strcpy( fn, fn_raw );
274                        http_encode( fn );
275                       
276                        g_snprintf( buf, sizeof( buf ), "PRP %d MFN %s\r\n",
277                                    ++md->trId, fn );
278                        g_free( fn );
279                       
280                        msn_write( ic, buf, strlen( buf ) );
281                }
282        }
283        else if( strcmp( cmd[0], "PRP" ) == 0 )
284        {
285                imcb_connected( ic );
286        }
287        else if( strcmp( cmd[0], "CHL" ) == 0 )
288        {
289                char *resp;
290               
291                if( num_parts < 3 )
292                {
293                        imcb_error( ic, "Syntax error" );
294                        imc_logout( ic, TRUE );
295                        return( 0 );
296                }
297               
298                resp = msn_p11_challenge( cmd[2] );
299                g_snprintf( buf, sizeof( buf ), "QRY %d %s %zd\r\n%s",
300                            ++md->trId, MSNP11_PROD_ID,
301                            strlen( resp ), resp );
302                g_free( resp );
303               
304                return( msn_write( ic, buf, strlen( buf ) ) );
305        }
306        else if( strcmp( cmd[0], "ILN" ) == 0 )
307        {
308                const struct msn_away_state *st;
309               
310                if( num_parts < 6 )
311                {
312                        imcb_error( ic, "Syntax error" );
313                        imc_logout( ic, TRUE );
314                        return( 0 );
315                }
316               
317                http_decode( cmd[5] );
318                imcb_rename_buddy( ic, cmd[3], cmd[5] );
319               
320                st = msn_away_state_by_code( cmd[2] );
321                if( !st )
322                {
323                        /* FIXME: Warn/Bomb about unknown away state? */
324                        st = msn_away_state_list + 1;
325                }
326               
327                imcb_buddy_status( ic, cmd[3], OPT_LOGGED_IN | 
328                                   ( st != msn_away_state_list ? OPT_AWAY : 0 ),
329                                   st->name, NULL );
330        }
331        else if( strcmp( cmd[0], "FLN" ) == 0 )
332        {
333                if( cmd[1] == NULL )
334                        return 1;
335               
336                imcb_buddy_status( ic, cmd[1], 0, NULL, NULL );
337               
338                msn_sb_start_keepalives( msn_sb_by_handle( ic, cmd[1] ), TRUE );
339        }
340        else if( strcmp( cmd[0], "NLN" ) == 0 )
341        {
342                const struct msn_away_state *st;
343               
344                if( num_parts < 5 )
345                {
346                        imcb_error( ic, "Syntax error" );
347                        imc_logout( ic, TRUE );
348                        return( 0 );
349                }
350               
351                http_decode( cmd[3] );
352                imcb_rename_buddy( ic, cmd[2], cmd[3] );
353               
354                st = msn_away_state_by_code( cmd[1] );
355                if( !st )
356                {
357                        /* FIXME: Warn/Bomb about unknown away state? */
358                        st = msn_away_state_list + 1;
359                }
360               
361                imcb_buddy_status( ic, cmd[2], OPT_LOGGED_IN | 
362                                   ( st != msn_away_state_list ? OPT_AWAY : 0 ),
363                                   st->name, NULL );
364               
365                msn_sb_stop_keepalives( msn_sb_by_handle( ic, cmd[2] ) );
366        }
367        else if( strcmp( cmd[0], "RNG" ) == 0 )
368        {
369                struct msn_switchboard *sb;
370                char *server;
371                int session, port;
372               
373                if( num_parts < 7 )
374                {
375                        imcb_error( ic, "Syntax error" );
376                        imc_logout( ic, TRUE );
377                        return( 0 );
378                }
379               
380                session = atoi( cmd[1] );
381               
382                server = strchr( cmd[2], ':' );
383                if( !server )
384                {
385                        imcb_error( ic, "Syntax error" );
386                        imc_logout( ic, TRUE );
387                        return( 0 );
388                }
389                *server = 0;
390                port = atoi( server + 1 );
391                server = cmd[2];
392               
393                if( strcmp( cmd[3], "CKI" ) != 0 )
394                {
395                        imcb_error( ic, "Unknown authentication method for switchboard" );
396                        imc_logout( ic, TRUE );
397                        return( 0 );
398                }
399               
400                debug( "Got a call from %s (session %d). Key = %s", cmd[5], session, cmd[4] );
401               
402                if( ( sb = msn_sb_create( ic, server, port, cmd[4], session ) ) == NULL )
403                {
404                        /* Although this isn't strictly fatal for the NS connection, it's
405                           definitely something serious (we ran out of file descriptors?). */
406                        imcb_error( ic, "Could not create new switchboard" );
407                        imc_logout( ic, TRUE );
408                        return( 0 );
409                }
410                else
411                {
412                        sb->who = g_strdup( cmd[5] );
413                }
414        }
415        else if( strcmp( cmd[0], "ADD" ) == 0 )
416        {
417                if( num_parts >= 6 && strcmp( cmd[2], "RL" ) == 0 )
418                {
419                        GSList *l;
420                       
421                        http_decode( cmd[5] );
422                       
423                        if( strchr( cmd[4], '@' ) == NULL )
424                        {
425                                imcb_error( ic, "Syntax error" );
426                                imc_logout( ic, TRUE );
427                                return 0;
428                        }
429                       
430                        /* We got added by someone. If we don't have this
431                           person in permit/deny yet, inform the user. */
432                        for( l = ic->permit; l; l = l->next )
433                                if( g_strcasecmp( l->data, cmd[4] ) == 0 )
434                                        return 1;
435                       
436                        for( l = ic->deny; l; l = l->next )
437                                if( g_strcasecmp( l->data, cmd[4] ) == 0 )
438                                        return 1;
439                       
440                        msn_buddy_ask( ic, cmd[4], cmd[5] );
441                }
442                else if( num_parts >= 6 && strcmp( cmd[2], "FL" ) == 0 )
443                {
444                        const char *group = NULL;
445                        int num;
446                       
447                        if( cmd[6] != NULL && sscanf( cmd[6], "%d", &num ) == 1 && num < md->groupcount )
448                                group = md->grouplist[num];
449                       
450                        http_decode( cmd[5] );
451                        imcb_add_buddy( ic, cmd[4], group );
452                        imcb_rename_buddy( ic, cmd[4], cmd[5] );
453                }
454        }
455        else if( strcmp( cmd[0], "OUT" ) == 0 )
456        {
457                int allow_reconnect = TRUE;
458               
459                if( cmd[1] && strcmp( cmd[1], "OTH" ) == 0 )
460                {
461                        imcb_error( ic, "Someone else logged in with your account" );
462                        allow_reconnect = FALSE;
463                }
464                else if( cmd[1] && strcmp( cmd[1], "SSD" ) == 0 )
465                {
466                        imcb_error( ic, "Terminating session because of server shutdown" );
467                }
468                else
469                {
470                        imcb_error( ic, "Session terminated by remote server (reason unknown)" );
471                }
472               
473                imc_logout( ic, allow_reconnect );
474                return( 0 );
475        }
476#if 0
477        /* Discard this one completely for now since I don't care about the ack
478           and since MSN servers can apparently screw up the formatting. */
479        else if( strcmp( cmd[0], "REA" ) == 0 )
480        {
481                if( num_parts < 5 )
482                {
483                        imcb_error( ic, "Syntax error" );
484                        imc_logout( ic, TRUE );
485                        return( 0 );
486                }
487               
488                if( g_strcasecmp( cmd[3], ic->acc->user ) == 0 )
489                {
490                        set_t *s;
491                       
492                        http_decode( cmd[4] );
493                        strncpy( ic->displayname, cmd[4], sizeof( ic->displayname ) );
494                        ic->displayname[sizeof(ic->displayname)-1] = 0;
495                       
496                        if( ( s = set_find( &ic->acc->set, "display_name" ) ) )
497                        {
498                                g_free( s->value );
499                                s->value = g_strdup( cmd[4] );
500                        }
501                }
502                else
503                {
504                        /* This is not supposed to happen, but let's handle it anyway... */
505                        http_decode( cmd[4] );
506                        imcb_rename_buddy( ic, cmd[3], cmd[4] );
507                }
508        }
509#endif
510        else if( strcmp( cmd[0], "IPG" ) == 0 )
511        {
512                imcb_error( ic, "Received IPG command, we don't handle them yet." );
513               
514                md->handler->msglen = atoi( cmd[1] );
515               
516                if( md->handler->msglen <= 0 )
517                {
518                        imcb_error( ic, "Syntax error" );
519                        imc_logout( ic, TRUE );
520                        return( 0 );
521                }
522        }
523        else if( strcmp( cmd[0], "ADG" ) == 0 )
524        {
525                char *group = g_strdup( cmd[3] );
526                int groupnum, i;
527                GSList *l, *next;
528               
529                http_decode( group );
530                if( sscanf( cmd[4], "%d", &groupnum ) == 1 )
531                {
532                        if( groupnum >= md->groupcount )
533                        {
534                                md->grouplist = g_renew( char *, md->grouplist, groupnum + 1 );
535                                for( i = md->groupcount; i <= groupnum; i ++ )
536                                        md->grouplist[i] = NULL;
537                                md->groupcount = groupnum + 1;
538                        }
539                        g_free( md->grouplist[groupnum] );
540                        md->grouplist[groupnum] = group;
541                }
542                else
543                {
544                        /* Shouldn't happen, but if it does, give up on the group. */
545                        g_free( group );
546                        imcb_error( ic, "Syntax error" );
547                        imc_logout( ic, TRUE );
548                        return 0;
549                }
550               
551                for( l = md->grpq; l; l = next )
552                {
553                        struct msn_groupadd *ga = l->data;
554                        next = l->next;
555                        if( g_strcasecmp( ga->group, group ) == 0 )
556                        {
557                                if( !msn_buddy_list_add( ic, "FL", ga->who, ga->who, group ) )
558                                        return 0;
559                               
560                                g_free( ga->group );
561                                g_free( ga->who );
562                                g_free( ga );
563                                md->grpq = g_slist_remove( md->grpq, ga );
564                        }
565                }
566        }
567        else if( strcmp( cmd[0], "GCF" ) == 0 )
568        {
569                /* Coming up is cmd[2] bytes of stuff we're supposed to
570                   censore. Meh. */
571                md->handler->msglen = atoi( cmd[2] );
572        }
573        else if( strcmp( cmd[0], "UBX" ) == 0 )
574        {
575                /* Status message. Parser coming soon. */
576                if( num_parts >= 4 )
577                        md->handler->msglen = atoi( cmd[3] );
578        }
579        else if( isdigit( cmd[0][0] ) )
580        {
581                int num = atoi( cmd[0] );
582                const struct msn_status_code *err = msn_status_by_number( num );
583               
584                imcb_error( ic, "Error reported by MSN server: %s", err->text );
585               
586                if( err->flags & STATUS_FATAL )
587                {
588                        imc_logout( ic, TRUE );
589                        return( 0 );
590                }
591        }
592        else
593        {
594                /* debug( "Received unknown command from main server: %s", cmd[0] ); */
595        }
596       
597        return( 1 );
598}
599
600static int msn_ns_message( gpointer data, char *msg, int msglen, char **cmd, int num_parts )
601{
602        struct im_connection *ic = data;
603        char *body;
604        int blen = 0;
605       
606        if( !num_parts )
607                return( 1 );
608       
609        if( ( body = strstr( msg, "\r\n\r\n" ) ) )
610        {
611                body += 4;
612                blen = msglen - ( body - msg );
613        }
614       
615        if( strcmp( cmd[0], "MSG" ) == 0 )
616        {
617                if( g_strcasecmp( cmd[1], "Hotmail" ) == 0 )
618                {
619                        char *ct = msn_findheader( msg, "Content-Type:", msglen );
620                       
621                        if( !ct )
622                                return( 1 );
623                       
624                        if( g_strncasecmp( ct, "application/x-msmsgssystemmessage", 33 ) == 0 )
625                        {
626                                char *mtype;
627                                char *arg1;
628                               
629                                if( !body )
630                                        return( 1 );
631                               
632                                mtype = msn_findheader( body, "Type:", blen );
633                                arg1 = msn_findheader( body, "Arg1:", blen );
634                               
635                                if( mtype && strcmp( mtype, "1" ) == 0 )
636                                {
637                                        if( arg1 )
638                                                imcb_log( ic, "The server is going down for maintenance in %s minutes.", arg1 );
639                                }
640                               
641                                g_free( arg1 );
642                                g_free( mtype );
643                        }
644                        else if( g_strncasecmp( ct, "text/x-msmsgsprofile", 20 ) == 0 )
645                        {
646                                /* We don't care about this profile for now... */
647                        }
648                        else if( g_strncasecmp( ct, "text/x-msmsgsinitialemailnotification", 37 ) == 0 )
649                        {
650                                if( set_getbool( &ic->acc->set, "mail_notifications" ) )
651                                {
652                                        char *inbox = msn_findheader( body, "Inbox-Unread:", blen );
653                                        char *folders = msn_findheader( body, "Folders-Unread:", blen );
654
655                                        if( inbox && folders )
656                                                imcb_log( ic, "INBOX contains %s new messages, plus %s messages in other folders.", inbox, folders );
657                                       
658                                        g_free( inbox );
659                                        g_free( folders );
660                                }
661                        }
662                        else if( g_strncasecmp( ct, "text/x-msmsgsemailnotification", 30 ) == 0 )
663                        {
664                                if( set_getbool( &ic->acc->set, "mail_notifications" ) )
665                                {
666                                        char *from = msn_findheader( body, "From-Addr:", blen );
667                                        char *fromname = msn_findheader( body, "From:", blen );
668                                       
669                                        if( from && fromname )
670                                                imcb_log( ic, "Received an e-mail message from %s <%s>.", fromname, from );
671
672                                        g_free( from );
673                                        g_free( fromname );
674                                }
675                        }
676                        else if( g_strncasecmp( ct, "text/x-msmsgsactivemailnotification", 35 ) == 0 )
677                        {
678                                /* Sorry, but this one really is *USELESS* */
679                        }
680                        else
681                        {
682                                debug( "Can't handle %s packet from notification server", ct );
683                        }
684                       
685                        g_free( ct );
686                }
687        }
688       
689        return( 1 );
690}
691
692void msn_auth_got_passport_token( struct im_connection *ic, char *token )
693{
694        struct msn_data *md;
695       
696        /* Dead connection? */
697        if( g_slist_find( msn_connections, ic ) == NULL )
698                return;
699       
700        md = ic->proto_data;
701       
702        {
703                char buf[1024];
704               
705                g_snprintf( buf, sizeof( buf ), "USR %d SSO S %s %s\r\n", ++md->trId, md->tokens[0], token );
706                msn_write( ic, buf, strlen( buf ) );
707        }
708}
709
710void msn_auth_got_contact_list( struct im_connection *ic )
711{
712        char buf[64];
713        struct msn_data *md;
714       
715        /* Dead connection? */
716        if( g_slist_find( msn_connections, ic ) == NULL )
717                return;
718       
719        md = ic->proto_data;
720       
721       
722        g_snprintf( buf, sizeof( buf ), "BLP %d %s\r\n", ++md->trId, "BL" );
723        msn_write( ic, buf, strlen( buf ) );
724}
725
726static gboolean msn_ns_send_adl_1( gpointer key, gpointer value, gpointer data )
727{
728        struct xt_node *adl = data, *d, *c;
729        struct bee_user *bu = value;
730        struct msn_buddy_data *bd = bu->data;
731        char handle[strlen(bu->handle)];
732        char *domain;
733        char l[4];
734       
735        strcpy( handle, bu->handle );
736        if( ( domain = strchr( handle, '@' ) ) == NULL ) /* WTF */
737                return FALSE; 
738        *domain = '\0';
739        domain ++;
740       
741        if( ( d = adl->children ) == NULL ||
742            g_strcasecmp( xt_find_attr( d, "n" ), domain ) != 0 )
743        {
744                d = xt_new_node( "d", NULL, NULL );
745                xt_add_attr( d, "n", domain );
746                xt_insert_child( adl, d );
747        }
748       
749        g_snprintf( l, sizeof( l ), "%d", bd->flags & 7 );
750        c = xt_new_node( "c", NULL, NULL );
751        xt_add_attr( c, "n", handle );
752        xt_add_attr( c, "l", l );
753        xt_add_attr( c, "t", "1" ); /* 1 means normal, 4 means mobile? */
754        xt_insert_child( d, c );
755       
756        return FALSE;
757}
758
759static void msn_ns_send_adl( struct im_connection *ic )
760{
761        struct xt_node *adl;
762        struct msn_data *md;
763        char *adls, buf[64];
764       
765        /* Dead connection? */
766        if( g_slist_find( msn_connections, ic ) == NULL )
767                return;
768       
769        md = ic->proto_data;
770       
771        adl = xt_new_node( "ml", NULL, NULL );
772        xt_add_attr( adl, "l", "1" );
773        g_tree_foreach( md->domaintree, msn_ns_send_adl_1, adl );
774        adls = xt_to_string( adl );
775       
776        g_snprintf( buf, sizeof( buf ), "ADL %d %zd\r\n", ++md->trId, strlen( adls ) );
777        if( msn_write( ic, buf, strlen( buf ) ) )
778                msn_write( ic, adls, strlen( adls ) );
779       
780        g_free( adls );
781        xt_free_node( adl );
782}
783
784static gboolean msn_ns_got_display_name( struct im_connection *ic, char *name )
785{
786        set_t *s;
787       
788        if( ( s = set_find( &ic->acc->set, "display_name" ) ) == NULL )
789                return FALSE; /* Shouldn't happen.. */
790       
791        http_decode( name );
792       
793        if( s->value && strcmp( s->value, name ) == 0 )
794        {
795                return TRUE;
796                /* The names match, nothing to worry about. */
797        }
798        else if( s->value != NULL &&
799                 ( strcmp( name, ic->acc->user ) == 0 ||
800                   set_getbool( &ic->acc->set, "local_display_name" ) ) )
801        {
802                /* The server thinks our display name is our e-mail address
803                   which is probably wrong, or the user *wants* us to do this:
804                   Always use the locally set display_name. */
805                return msn_set_display_name( ic, s->value );
806        }
807        else
808        {
809                if( s->value && *s->value )
810                        imcb_log( ic, "BitlBee thinks your display name is `%s' but "
811                                      "the MSN server says it's `%s'. Using the MSN "
812                                      "server's name. Set local_display_name to true "
813                                      "to use the local name.", s->value, name );
814               
815                if( g_utf8_validate( name, -1, NULL ) )
816                {
817                        g_free( s->value );
818                        s->value = g_strdup( name );
819                }
820                else
821                {
822                        imcb_log( ic, "Warning: Friendly name in server response was corrupted" );
823                }
824               
825                return TRUE;
826        }
827}
Note: See TracBrowser for help on using the repository browser.