source: protocols/msn/soap.c @ 385fbc4

Last change on this file since 385fbc4 was 385fbc4, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-10-06T08:31:15Z

Fixed string handling bug with long MSN passwords.

  • Property mode set to 100644
File size: 29.6 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 - All the SOAPy XML stuff.
8   Some manager at Microsoft apparently thought MSNP wasn't XMLy enough so
9   someone stepped up and changed that. This is the result. Kilobytes and
10   more kilobytes of XML vomit to transfer tiny bits of informaiton. */
11
12/*
13  This program is free software; you can redistribute it and/or modify
14  it under the terms of the GNU General Public License as published by
15  the Free Software Foundation; either version 2 of the License, or
16  (at your option) any later version.
17
18  This program is distributed in the hope that it will be useful,
19  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  GNU General Public License for more details.
22
23  You should have received a copy of the GNU General Public License with
24  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
25  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
26  Suite 330, Boston, MA  02111-1307  USA
27*/
28
29#include "http_client.h"
30#include "soap.h"
31#include "msn.h"
32#include "bitlbee.h"
33#include "url.h"
34#include "misc.h"
35#include "sha1.h"
36#include "base64.h"
37#include "xmltree.h"
38#include <ctype.h>
39#include <errno.h>
40
41/* This file tries to make SOAP stuff pretty simple to do by letting you just
42   provide a function to build a request, a few functions to parse various
43   parts of the response, and a function to run when the full response was
44   received and parsed. See the various examples below. */
45
46typedef enum
47{
48        MSN_SOAP_OK,
49        MSN_SOAP_RETRY,
50        MSN_SOAP_REAUTH,
51        MSN_SOAP_ABORT,
52} msn_soap_result_t;
53
54struct msn_soap_req_data;
55typedef int (*msn_soap_func) ( struct msn_soap_req_data * );
56
57struct msn_soap_req_data
58{
59        void *data;
60        struct im_connection *ic;
61        int ttl;
62       
63        char *url, *action, *payload;
64        struct http_request *http_req;
65       
66        const struct xt_handler_entry *xml_parser;
67        msn_soap_func build_request, handle_response, free_data;
68};
69
70static int msn_soap_send_request( struct msn_soap_req_data *req );
71static void msn_soap_free( struct msn_soap_req_data *soap_req );
72static void msn_soap_debug_print( const char *headers, const char *payload );
73
74static int msn_soap_start( struct im_connection *ic,
75                    void *data,
76                    msn_soap_func build_request,
77                    const struct xt_handler_entry *xml_parser,
78                    msn_soap_func handle_response,
79                    msn_soap_func free_data )
80{
81        struct msn_soap_req_data *req = g_new0( struct msn_soap_req_data, 1 );
82       
83        req->ic = ic;
84        req->data = data;
85        req->xml_parser = xml_parser;
86        req->build_request = build_request;
87        req->handle_response = handle_response;
88        req->free_data = free_data;
89        req->ttl = 3;
90       
91        return msn_soap_send_request( req );
92}
93
94static void msn_soap_handle_response( struct http_request *http_req );
95
96static int msn_soap_send_request( struct msn_soap_req_data *soap_req )
97{
98        char *http_req;
99        char *soap_action = NULL;
100        url_t url;
101       
102        soap_req->build_request( soap_req );
103       
104        if( soap_req->action )
105                soap_action = g_strdup_printf( "SOAPAction: \"%s\"\r\n", soap_req->action );
106       
107        url_set( &url, soap_req->url );
108        http_req = g_strdup_printf( SOAP_HTTP_REQUEST, url.file, url.host,
109                soap_action ? soap_action : "",
110                strlen( soap_req->payload ), soap_req->payload );
111       
112        msn_soap_debug_print( http_req, soap_req->payload );
113       
114        soap_req->http_req = http_dorequest( url.host, url.port, url.proto == PROTO_HTTPS,
115                http_req, msn_soap_handle_response, soap_req );
116       
117        g_free( http_req );
118        g_free( soap_action );
119       
120        return soap_req->http_req != NULL;
121}
122
123static void msn_soap_handle_response( struct http_request *http_req )
124{
125        struct msn_soap_req_data *soap_req = http_req->data;
126        int st;
127       
128        if( g_slist_find( msn_connections, soap_req->ic ) == NULL )
129        {
130                msn_soap_free( soap_req );
131                return;
132        }
133       
134        msn_soap_debug_print( http_req->reply_headers, http_req->reply_body );
135       
136        if( http_req->body_size > 0 )
137        {
138                struct xt_parser *parser;
139                struct xt_node *err;
140               
141                parser = xt_new( soap_req->xml_parser, soap_req );
142                xt_feed( parser, http_req->reply_body, http_req->body_size );
143                if( http_req->status_code == 500 &&
144                    ( err = xt_find_path( parser->root, "soap:Body/soap:Fault/detail/errorcode" ) ) &&
145                    err->text_len > 0 )
146                {
147                        if( strcmp( err->text, "PassportAuthFail" ) == 0 )
148                        {
149                                xt_free( parser );
150                                st = MSN_SOAP_REAUTH;
151                                goto fail;
152                        }
153                        /* TODO: Handle/report other errors. */
154                }
155               
156                xt_handle( parser, NULL, -1 );
157                xt_free( parser );
158        }
159       
160        st = soap_req->handle_response( soap_req );
161
162fail:   
163        g_free( soap_req->url );
164        g_free( soap_req->action );
165        g_free( soap_req->payload );
166        soap_req->url = soap_req->action = soap_req->payload = NULL;
167       
168        if( st == MSN_SOAP_RETRY && --soap_req->ttl )
169        {
170                msn_soap_send_request( soap_req );
171        }
172        else if( st == MSN_SOAP_REAUTH )
173        {
174                struct msn_data *md = soap_req->ic->proto_data;
175               
176                if( !( md->flags & MSN_REAUTHING ) )
177                {
178                        /* Nonce shouldn't actually be touched for re-auths. */
179                        msn_soap_passport_sso_request( soap_req->ic, "blaataap" );
180                        md->flags |= MSN_REAUTHING; 
181                }
182                md->soapq = g_slist_append( md->soapq, soap_req );
183        }
184        else
185        {
186                soap_req->free_data( soap_req );
187                g_free( soap_req );
188        }
189}
190
191static char *msn_soap_abservice_build( const char *body_fmt, const char *scenario, const char *ticket, ... )
192{
193        va_list params;
194        char *ret, *format, *body;
195       
196        format = g_markup_printf_escaped( SOAP_ABSERVICE_PAYLOAD, scenario, ticket );
197       
198        va_start( params, ticket );
199        body = g_strdup_vprintf( body_fmt, params );
200        va_end( params );
201       
202        ret = g_strdup_printf( format, body );
203        g_free( body );
204        g_free( format );
205       
206        return ret;
207}
208
209static void msn_soap_debug_print( const char *headers, const char *payload )
210{
211        char *s;
212       
213        if( !getenv( "BITLBEE_DEBUG" ) )
214                return;
215       
216        if( ( s = strstr( headers, "\r\n\r\n" ) ) )
217                write( 1, s, s - headers + 4 );
218        else
219                write( 1, headers, strlen( headers ) );
220       
221#ifdef DEBUG
222        {
223                struct xt_node *xt = xt_from_string( payload );
224                if( xt )
225                        xt_print( xt );
226                xt_free_node( xt );
227        }
228#endif
229}
230
231int msn_soapq_flush( struct im_connection *ic, gboolean resend )
232{
233        struct msn_data *md = ic->proto_data;
234       
235        while( md->soapq )
236        {
237                if( resend )
238                        msn_soap_send_request( (struct msn_soap_req_data*) md->soapq->data );
239                else
240                        msn_soap_free( (struct msn_soap_req_data*) md->soapq->data );
241                md->soapq = g_slist_remove( md->soapq, md->soapq->data );
242        }
243       
244        return MSN_SOAP_OK;
245}
246
247static void msn_soap_free( struct msn_soap_req_data *soap_req )
248{
249        soap_req->free_data( soap_req );
250        g_free( soap_req->url );
251        g_free( soap_req->action );
252        g_free( soap_req->payload );
253        g_free( soap_req );
254}
255
256
257/* passport_sso: Authentication MSNP15+ */
258
259struct msn_soap_passport_sso_data
260{
261        char *nonce;
262        char *secret;
263        char *error;
264        char *redirect;
265};
266
267static int msn_soap_passport_sso_build_request( struct msn_soap_req_data *soap_req )
268{
269        struct msn_soap_passport_sso_data *sd = soap_req->data;
270        struct im_connection *ic = soap_req->ic;
271        struct msn_data *md = ic->proto_data;
272        char pass[MAX_PASSPORT_PWLEN+1];
273       
274        if( sd->redirect )
275        {
276                soap_req->url = sd->redirect;
277                sd->redirect = NULL;
278        }
279        else if( g_str_has_suffix( ic->acc->user, "@msn.com" ) )
280                soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL_MSN );
281        else
282                soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL );
283       
284        strncpy( pass, ic->acc->pass, MAX_PASSPORT_PWLEN );
285        pass[MAX_PASSPORT_PWLEN] = '\0';
286        soap_req->payload = g_markup_printf_escaped( SOAP_PASSPORT_SSO_PAYLOAD,
287                ic->acc->user, pass, md->pp_policy );
288       
289        return MSN_SOAP_OK;
290}
291
292static xt_status msn_soap_passport_sso_token( struct xt_node *node, gpointer data )
293{
294        struct msn_soap_req_data *soap_req = data;
295        struct msn_soap_passport_sso_data *sd = soap_req->data;
296        struct msn_data *md = soap_req->ic->proto_data;
297        struct xt_node *p;
298        char *id;
299       
300        if( ( id = xt_find_attr( node, "Id" ) ) == NULL )
301                return XT_HANDLED;
302        id += strlen( id ) - 1;
303        if( *id == '1' &&
304            ( p = xt_find_path( node, "../../wst:RequestedProofToken/wst:BinarySecret" ) ) &&
305            p->text )
306                sd->secret = g_strdup( p->text );
307       
308        *id -= '1';
309        if( *id >= 0 && *id < sizeof( md->tokens ) / sizeof( md->tokens[0] ) )
310        {
311                g_free( md->tokens[(int)*id] );
312                md->tokens[(int)*id] = g_strdup( node->text );
313        }
314       
315        return XT_HANDLED;
316}
317
318static xt_status msn_soap_passport_failure( struct xt_node *node, gpointer data )
319{
320        struct msn_soap_req_data *soap_req = data;
321        struct msn_soap_passport_sso_data *sd = soap_req->data;
322        struct xt_node *code = xt_find_node( node->children, "faultcode" );
323        struct xt_node *string = xt_find_node( node->children, "faultstring" );
324        struct xt_node *url;
325       
326        if( code == NULL || code->text_len == 0 )
327                sd->error = g_strdup( "Unknown error" );
328        else if( strcmp( code->text, "psf:Redirect" ) == 0 &&
329                 ( url = xt_find_node( node->children, "psf:redirectUrl" ) ) &&
330                 url->text_len > 0 )
331                sd->redirect = g_strdup( url->text );
332        else
333                sd->error = g_strdup_printf( "%s (%s)", code->text, string && string->text_len ?
334                                             string->text : "no description available" );
335       
336        return XT_HANDLED;
337}
338
339static const struct xt_handler_entry msn_soap_passport_sso_parser[] = {
340        { "wsse:BinarySecurityToken", "wst:RequestedSecurityToken", msn_soap_passport_sso_token },
341        { "S:Fault", "S:Envelope", msn_soap_passport_failure },
342        { NULL, NULL, NULL }
343};
344
345static char *msn_key_fuckery( char *key, int key_len, char *type )
346{
347        unsigned char hash1[20+strlen(type)+1];
348        unsigned char hash2[20];
349        char *ret;
350       
351        sha1_hmac( key, key_len, type, 0, hash1 );
352        strcpy( (char*) hash1 + 20, type );
353        sha1_hmac( key, key_len, (char*) hash1, sizeof( hash1 ) - 1, hash2 );
354       
355        /* This is okay as hash1 is read completely before it's overwritten. */
356        sha1_hmac( key, key_len, (char*) hash1, 20, hash1 );
357        sha1_hmac( key, key_len, (char*) hash1, sizeof( hash1 ) - 1, hash1 );
358       
359        ret = g_malloc( 24 );
360        memcpy( ret, hash2, 20 );
361        memcpy( ret + 20, hash1, 4 );
362        return ret;
363}
364
365static int msn_soap_passport_sso_handle_response( struct msn_soap_req_data *soap_req )
366{
367        struct msn_soap_passport_sso_data *sd = soap_req->data;
368        struct im_connection *ic = soap_req->ic;
369        struct msn_data *md = ic->proto_data;
370        char *key1, *key2, *key3, *blurb64;
371        int key1_len;
372        unsigned char *padnonce, *des3res;
373        struct
374        {
375                unsigned int uStructHeaderSize; // 28. Does not count data
376                unsigned int uCryptMode; // CRYPT_MODE_CBC (1)
377                unsigned int uCipherType; // TripleDES (0x6603)
378                unsigned int uHashType; // SHA1 (0x8004)
379                unsigned int uIVLen;    // 8
380                unsigned int uHashLen;  // 20
381                unsigned int uCipherLen; // 72
382                unsigned char iv[8];
383                unsigned char hash[20];
384                unsigned char cipherbytes[72];
385        } blurb = {
386                GUINT32_TO_LE( 28 ),
387                GUINT32_TO_LE( 1 ),
388                GUINT32_TO_LE( 0x6603 ),
389                GUINT32_TO_LE( 0x8004 ),
390                GUINT32_TO_LE( 8 ),
391                GUINT32_TO_LE( 20 ),
392                GUINT32_TO_LE( 72 ),
393        };
394       
395        if( sd->redirect )
396                return MSN_SOAP_RETRY;
397       
398        if( md->soapq )
399                return msn_soapq_flush( ic, TRUE );
400       
401        if( sd->secret == NULL )
402        {
403                msn_auth_got_passport_token( ic, NULL, sd->error );
404                return MSN_SOAP_OK;
405        }
406
407        key1_len = base64_decode( sd->secret, (unsigned char**) &key1 );
408       
409        key2 = msn_key_fuckery( key1, key1_len, "WS-SecureConversationSESSION KEY HASH" );
410        key3 = msn_key_fuckery( key1, key1_len, "WS-SecureConversationSESSION KEY ENCRYPTION" );
411       
412        sha1_hmac( key2, 24, sd->nonce, 0, blurb.hash );
413        padnonce = g_malloc( strlen( sd->nonce ) + 8 );
414        strcpy( (char*) padnonce, sd->nonce );
415        memset( padnonce + strlen( sd->nonce ), 8, 8 );
416       
417        random_bytes( blurb.iv, 8 );
418       
419        ssl_des3_encrypt( (unsigned char*) key3, 24, padnonce, strlen( sd->nonce ) + 8, blurb.iv, &des3res );
420        memcpy( blurb.cipherbytes, des3res, 72 );
421       
422        blurb64 = base64_encode( (unsigned char*) &blurb, sizeof( blurb ) );
423        msn_auth_got_passport_token( ic, blurb64, NULL );
424       
425        g_free( padnonce );
426        g_free( blurb64 );
427        g_free( des3res );
428        g_free( key1 );
429        g_free( key2 );
430        g_free( key3 );
431       
432        return MSN_SOAP_OK;
433}
434
435static int msn_soap_passport_sso_free_data( struct msn_soap_req_data *soap_req )
436{
437        struct msn_soap_passport_sso_data *sd = soap_req->data;
438       
439        g_free( sd->nonce );
440        g_free( sd->secret );
441        g_free( sd->error );
442        g_free( sd->redirect );
443       
444        return MSN_SOAP_OK;
445}
446
447int msn_soap_passport_sso_request( struct im_connection *ic, const char *nonce )
448{
449        struct msn_soap_passport_sso_data *sd = g_new0( struct msn_soap_passport_sso_data, 1 );
450       
451        sd->nonce = g_strdup( nonce );
452       
453        return msn_soap_start( ic, sd, msn_soap_passport_sso_build_request,
454                                       msn_soap_passport_sso_parser,
455                                       msn_soap_passport_sso_handle_response,
456                                       msn_soap_passport_sso_free_data );
457}
458
459
460/* oim_send: Sending offline messages */
461
462struct msn_soap_oim_send_data
463{
464        char *to;
465        char *msg;
466        int number;
467        msn_soap_result_t need_retry;
468};
469
470static int msn_soap_oim_build_request( struct msn_soap_req_data *soap_req )
471{
472        struct msn_soap_oim_send_data *oim = soap_req->data;
473        struct im_connection *ic = soap_req->ic;
474        struct msn_data *md = ic->proto_data;
475        char *display_name_b64;
476       
477        display_name_b64 = tobase64( set_getstr( &ic->acc->set, "display_name" ) );
478       
479        soap_req->url = g_strdup( SOAP_OIM_SEND_URL );
480        soap_req->action = g_strdup( SOAP_OIM_SEND_ACTION );
481        soap_req->payload = g_markup_printf_escaped( SOAP_OIM_SEND_PAYLOAD,
482                ic->acc->user, display_name_b64, MSNP_VER, MSNP_BUILD,
483                oim->to, md->tokens[2],
484                MSNP11_PROD_ID, md->lock_key ? md->lock_key : "",
485                oim->number, oim->number, oim->msg );
486       
487        g_free( display_name_b64 );
488        oim->need_retry = MSN_SOAP_OK;
489       
490        return MSN_SOAP_OK;
491}
492
493static xt_status msn_soap_oim_reauth( struct xt_node *node, gpointer data )
494{
495        struct msn_soap_req_data *soap_req = data;
496        struct msn_soap_oim_send_data *oim = soap_req->data;
497        struct im_connection *ic = soap_req->ic;
498        struct msn_data *md = ic->proto_data;
499        struct xt_node *c;
500       
501        if( ( c = xt_find_node( node->children, "LockKeyChallenge" ) ) && c->text_len > 0 )
502        {
503                g_free( md->lock_key );
504                md->lock_key = msn_p11_challenge( c->text );
505                oim->need_retry = MSN_SOAP_RETRY;
506        }
507        if( xt_find_node( node->children, "RequiredAuthPolicy" ) )
508        {
509                oim->need_retry = MSN_SOAP_REAUTH;
510        }
511       
512        return XT_HANDLED;
513}
514
515static const struct xt_handler_entry msn_soap_oim_send_parser[] = {
516        { "detail", "soap:Fault", msn_soap_oim_reauth },
517        { NULL,     NULL,         NULL                }
518};
519
520static int msn_soap_oim_handle_response( struct msn_soap_req_data *soap_req )
521{
522        struct msn_soap_oim_send_data *oim = soap_req->data;
523       
524        if( soap_req->http_req->status_code == 500 && oim->need_retry && soap_req->ttl > 0 )
525        {
526                return oim->need_retry;
527        }
528        else if( soap_req->http_req->status_code == 200 )
529        {
530                imcb_log( soap_req->ic, "Offline message successfully delivered to %s", oim->to );
531                return MSN_SOAP_OK;
532        }
533        else
534        {
535                imcb_log( soap_req->ic, "Failed to deliver offline message to %s:\n%s", oim->to, oim->msg );
536                return MSN_SOAP_ABORT;
537        }
538}
539
540static int msn_soap_oim_free_data( struct msn_soap_req_data *soap_req )
541{
542        struct msn_soap_oim_send_data *oim = soap_req->data;
543       
544        g_free( oim->to );
545        g_free( oim->msg );
546        g_free( oim );
547       
548        return MSN_SOAP_OK;
549}
550
551int msn_soap_oim_send( struct im_connection *ic, const char *to, const char *msg )
552{
553        struct msn_soap_oim_send_data *data;
554       
555        data = g_new0( struct msn_soap_oim_send_data, 1 );
556        data->to = g_strdup( to );
557        data->msg = tobase64( msg );
558        data->number = 1;
559       
560        return msn_soap_start( ic, data, msn_soap_oim_build_request,
561                                         msn_soap_oim_send_parser,
562                                         msn_soap_oim_handle_response,
563                                         msn_soap_oim_free_data );
564}
565
566int msn_soap_oim_send_queue( struct im_connection *ic, GSList **msgq )
567{
568        GSList *l;
569        char *n = NULL;
570       
571        for( l = *msgq; l; l = l->next )
572        {
573                struct msn_message *m = l->data;
574               
575                if( n == NULL )
576                        n = m->who;
577                if( strcmp( n, m->who ) == 0 )
578                        msn_soap_oim_send( ic, m->who, m->text );
579        }
580       
581        while( *msgq != NULL )
582        {
583                struct msn_message *m = (*msgq)->data;
584               
585                g_free( m->who );
586                g_free( m->text );
587                g_free( m );
588               
589                *msgq = g_slist_remove( *msgq, m );
590        }
591       
592        return 1;
593}
594
595
596/* memlist: Fetching the membership list (NOT address book) */
597
598static int msn_soap_memlist_build_request( struct msn_soap_req_data *soap_req )
599{
600        struct msn_data *md = soap_req->ic->proto_data;
601       
602        soap_req->url = g_strdup( SOAP_MEMLIST_URL );
603        soap_req->action = g_strdup( SOAP_MEMLIST_ACTION );
604        soap_req->payload = msn_soap_abservice_build( SOAP_MEMLIST_PAYLOAD, "Initial", md->tokens[1] );
605       
606        return 1;
607}
608
609static xt_status msn_soap_memlist_member( struct xt_node *node, gpointer data )
610{
611        bee_user_t *bu;
612        struct msn_buddy_data *bd;
613        struct xt_node *p;
614        char *role = NULL, *handle = NULL;
615        struct msn_soap_req_data *soap_req = data;
616        struct im_connection *ic = soap_req->ic;
617       
618        if( ( p = xt_find_path( node, "../../MemberRole" ) ) )
619                role = p->text;
620       
621        if( ( p = xt_find_node( node->children, "PassportName" ) ) )
622                handle = p->text;
623       
624        if( !role || !handle || 
625            !( ( bu = bee_user_by_handle( ic->bee, ic, handle ) ) ||
626               ( bu = bee_user_new( ic->bee, ic, handle, 0 ) ) ) )
627                return XT_HANDLED;
628       
629        bd = bu->data;
630        if( strcmp( role, "Allow" ) == 0 )
631        {
632                bd->flags |= MSN_BUDDY_AL;
633                ic->permit = g_slist_prepend( ic->permit, g_strdup( handle ) );
634        }
635        else if( strcmp( role, "Block" ) == 0 )
636        {
637                bd->flags |= MSN_BUDDY_BL;
638                ic->deny = g_slist_prepend( ic->deny, g_strdup( handle ) );
639        }
640        else if( strcmp( role, "Reverse" ) == 0 )
641                bd->flags |= MSN_BUDDY_RL;
642        else if( strcmp( role, "Pending" ) == 0 )
643                bd->flags |= MSN_BUDDY_PL;
644       
645        if( getenv( "BITLBEE_DEBUG" ) )
646                printf( "%p %s %d\n", bu, handle, bd->flags );
647       
648        return XT_HANDLED;
649}
650
651static const struct xt_handler_entry msn_soap_memlist_parser[] = {
652        { "Member", "Members", msn_soap_memlist_member },
653        { NULL,               NULL,     NULL                        }
654};
655
656static int msn_soap_memlist_handle_response( struct msn_soap_req_data *soap_req )
657{
658        msn_soap_addressbook_request( soap_req->ic );
659       
660        return MSN_SOAP_OK;
661}
662
663static int msn_soap_memlist_free_data( struct msn_soap_req_data *soap_req )
664{
665        return 0;
666}
667
668int msn_soap_memlist_request( struct im_connection *ic )
669{
670        return msn_soap_start( ic, NULL, msn_soap_memlist_build_request,
671                                         msn_soap_memlist_parser,
672                                         msn_soap_memlist_handle_response,
673                                         msn_soap_memlist_free_data );
674}
675
676/* Variant: Adding/Removing people */
677struct msn_soap_memlist_edit_data
678{
679        char *handle;
680        gboolean add;
681        msn_buddy_flags_t list;
682};
683
684static int msn_soap_memlist_edit_build_request( struct msn_soap_req_data *soap_req )
685{
686        struct msn_data *md = soap_req->ic->proto_data;
687        struct msn_soap_memlist_edit_data *med = soap_req->data;
688        char *add, *scenario, *list;
689       
690        soap_req->url = g_strdup( SOAP_MEMLIST_URL );
691        if( med->add )
692        {
693                soap_req->action = g_strdup( SOAP_MEMLIST_ADD_ACTION );
694                add = "Add";
695        }
696        else
697        {
698                soap_req->action = g_strdup( SOAP_MEMLIST_DEL_ACTION );
699                add = "Delete";
700        }
701        switch( med->list )
702        {
703        case MSN_BUDDY_AL:
704                scenario = "BlockUnblock";
705                list = "Allow";
706                break;
707        case MSN_BUDDY_BL:
708                scenario = "BlockUnblock";
709                list = "Block";
710                break;
711        case MSN_BUDDY_RL:
712                scenario = "Timer";
713                list = "Reverse";
714                break;
715        case MSN_BUDDY_PL:
716        default:
717                scenario = "Timer";
718                list = "Pending";
719                break;
720        }
721        soap_req->payload = msn_soap_abservice_build( SOAP_MEMLIST_EDIT_PAYLOAD,
722                scenario, md->tokens[1], add, list, med->handle, add );
723       
724        return 1;
725}
726
727static int msn_soap_memlist_edit_handle_response( struct msn_soap_req_data *soap_req )
728{
729        return MSN_SOAP_OK;
730}
731
732static int msn_soap_memlist_edit_free_data( struct msn_soap_req_data *soap_req )
733{
734        struct msn_soap_memlist_edit_data *med = soap_req->data;
735       
736        g_free( med->handle );
737        g_free( med );
738       
739        return 0;
740}
741
742int msn_soap_memlist_edit( struct im_connection *ic, const char *handle, gboolean add, int list )
743{
744        struct msn_soap_memlist_edit_data *med;
745       
746        med = g_new0( struct msn_soap_memlist_edit_data, 1 );
747        med->handle = g_strdup( handle );
748        med->add = add;
749        med->list = list;
750       
751        return msn_soap_start( ic, med, msn_soap_memlist_edit_build_request,
752                                        NULL,
753                                        msn_soap_memlist_edit_handle_response,
754                                        msn_soap_memlist_edit_free_data );
755}
756
757
758/* addressbook: Fetching the membership list (NOT address book) */
759
760static int msn_soap_addressbook_build_request( struct msn_soap_req_data *soap_req )
761{
762        struct msn_data *md = soap_req->ic->proto_data;
763       
764        soap_req->url = g_strdup( SOAP_ADDRESSBOOK_URL );
765        soap_req->action = g_strdup( SOAP_ADDRESSBOOK_ACTION );
766        soap_req->payload = msn_soap_abservice_build( SOAP_ADDRESSBOOK_PAYLOAD, "Initial", md->tokens[1] );
767       
768        return 1;
769}
770
771static xt_status msn_soap_addressbook_group( struct xt_node *node, gpointer data )
772{
773        struct xt_node *p;
774        char *id = NULL, *name = NULL;
775        struct msn_soap_req_data *soap_req = data;
776        struct msn_data *md = soap_req->ic->proto_data;
777       
778        if( ( p = xt_find_path( node, "../groupId" ) ) )
779                id = p->text;
780       
781        if( ( p = xt_find_node( node->children, "name" ) ) )
782                name = p->text;
783       
784        if( id && name )
785        {
786                struct msn_group *mg = g_new0( struct msn_group, 1 );
787                mg->id = g_strdup( id );
788                mg->name = g_strdup( name );
789                md->groups = g_slist_prepend( md->groups, mg );
790        }
791       
792        if( getenv( "BITLBEE_DEBUG" ) )
793                printf( "%s %s\n", id, name );
794       
795        return XT_HANDLED;
796}
797
798static xt_status msn_soap_addressbook_contact( struct xt_node *node, gpointer data )
799{
800        bee_user_t *bu;
801        struct msn_buddy_data *bd;
802        struct xt_node *p;
803        char *id = NULL, *type = NULL, *handle = NULL, *is_msgr = "false",
804             *display_name = NULL, *group_id = NULL;
805        struct msn_soap_req_data *soap_req = data;
806        struct im_connection *ic = soap_req->ic;
807        struct msn_group *group;
808       
809        if( ( p = xt_find_path( node, "../contactId" ) ) )
810                id = p->text;
811        if( ( p = xt_find_node( node->children, "contactType" ) ) )
812                type = p->text;
813        if( ( p = xt_find_node( node->children, "passportName" ) ) )
814                handle = p->text;
815        if( ( p = xt_find_node( node->children, "displayName" ) ) )
816                display_name = p->text;
817        if( ( p = xt_find_node( node->children, "isMessengerUser" ) ) )
818                is_msgr = p->text;
819        if( ( p = xt_find_path( node, "groupIds/guid" ) ) )
820                group_id = p->text;
821       
822        if( type && g_strcasecmp( type, "me" ) == 0 )
823        {
824                set_t *set = set_find( &ic->acc->set, "display_name" );
825                g_free( set->value );
826                set->value = g_strdup( display_name );
827               
828                /* Try to fetch the profile; if the user has one, that's where
829                   we can find the persistent display_name. */
830                if( ( p = xt_find_node( node->children, "CID" ) ) && p->text )
831                        msn_soap_profile_get( ic, p->text );
832               
833                return XT_HANDLED;
834        }
835       
836        if( !bool2int( is_msgr ) || handle == NULL )
837                return XT_HANDLED;
838       
839        if( !( bu = bee_user_by_handle( ic->bee, ic, handle ) ) &&
840            !( bu = bee_user_new( ic->bee, ic, handle, 0 ) ) )
841                return XT_HANDLED;
842       
843        bd = bu->data;
844        bd->flags |= MSN_BUDDY_FL;
845        g_free( bd->cid );
846        bd->cid = g_strdup( id );
847       
848        imcb_rename_buddy( ic, handle, display_name );
849       
850        if( group_id && ( group = msn_group_by_id( ic, group_id ) ) )
851                imcb_add_buddy( ic, handle, group->name );
852       
853        if( getenv( "BITLBEE_DEBUG" ) )
854                printf( "%s %s %s %s\n", id, type, handle, display_name );
855       
856        return XT_HANDLED;
857}
858
859static const struct xt_handler_entry msn_soap_addressbook_parser[] = {
860        { "contactInfo", "Contact", msn_soap_addressbook_contact },
861        { "groupInfo", "Group", msn_soap_addressbook_group },
862        { NULL,               NULL,     NULL                        }
863};
864
865static int msn_soap_addressbook_handle_response( struct msn_soap_req_data *soap_req )
866{
867        GSList *l;
868       
869        for( l = soap_req->ic->bee->users; l; l = l->next )
870        {
871                struct bee_user *bu = l->data;
872               
873                if( bu->ic == soap_req->ic )
874                        msn_buddy_ask( bu );
875        }
876       
877        msn_auth_got_contact_list( soap_req->ic );
878       
879        return MSN_SOAP_OK;
880}
881
882static int msn_soap_addressbook_free_data( struct msn_soap_req_data *soap_req )
883{
884        return 0;
885}
886
887int msn_soap_addressbook_request( struct im_connection *ic )
888{
889        return msn_soap_start( ic, NULL, msn_soap_addressbook_build_request,
890                                         msn_soap_addressbook_parser,
891                                         msn_soap_addressbook_handle_response,
892                                         msn_soap_addressbook_free_data );
893}
894
895/* Variant: Change our display name. */
896static int msn_soap_ab_namechange_build_request( struct msn_soap_req_data *soap_req )
897{
898        struct msn_data *md = soap_req->ic->proto_data;
899       
900        soap_req->url = g_strdup( SOAP_ADDRESSBOOK_URL );
901        soap_req->action = g_strdup( SOAP_AB_NAMECHANGE_ACTION );
902        soap_req->payload = msn_soap_abservice_build( SOAP_AB_NAMECHANGE_PAYLOAD,
903                "Timer", md->tokens[1], (char *) soap_req->data );
904       
905        return 1;
906}
907
908static int msn_soap_ab_namechange_handle_response( struct msn_soap_req_data *soap_req )
909{
910        /* TODO: Ack the change? Not sure what the NAKs look like.. */
911        return MSN_SOAP_OK;
912}
913
914static int msn_soap_ab_namechange_free_data( struct msn_soap_req_data *soap_req )
915{
916        g_free( soap_req->data );
917        return 0;
918}
919
920int msn_soap_addressbook_set_display_name( struct im_connection *ic, const char *new )
921{
922        return msn_soap_start( ic, g_strdup( new ),
923                               msn_soap_ab_namechange_build_request,
924                               NULL,
925                               msn_soap_ab_namechange_handle_response,
926                               msn_soap_ab_namechange_free_data );
927}
928
929/* Add a contact. */
930static int msn_soap_ab_contact_add_build_request( struct msn_soap_req_data *soap_req )
931{
932        struct msn_data *md = soap_req->ic->proto_data;
933        bee_user_t *bu = soap_req->data;
934       
935        soap_req->url = g_strdup( SOAP_ADDRESSBOOK_URL );
936        soap_req->action = g_strdup( SOAP_AB_CONTACT_ADD_ACTION );
937        soap_req->payload = msn_soap_abservice_build( SOAP_AB_CONTACT_ADD_PAYLOAD,
938                "ContactSave", md->tokens[1], bu->handle, bu->fullname ? bu->fullname : bu->handle );
939       
940        return 1;
941}
942
943static xt_status msn_soap_ab_contact_add_cid( struct xt_node *node, gpointer data )
944{
945        struct msn_soap_req_data *soap_req = data;
946        bee_user_t *bu = soap_req->data;
947        struct msn_buddy_data *bd = bu->data;
948       
949        g_free( bd->cid );
950        bd->cid = g_strdup( node->text );
951       
952        return XT_HANDLED;
953}
954
955static const struct xt_handler_entry msn_soap_ab_contact_add_parser[] = {
956        { "guid", "ABContactAddResult", msn_soap_ab_contact_add_cid },
957        { NULL,               NULL,     NULL                        }
958};
959
960static int msn_soap_ab_contact_add_handle_response( struct msn_soap_req_data *soap_req )
961{
962        /* TODO: Ack the change? Not sure what the NAKs look like.. */
963        return MSN_SOAP_OK;
964}
965
966static int msn_soap_ab_contact_add_free_data( struct msn_soap_req_data *soap_req )
967{
968        return 0;
969}
970
971int msn_soap_ab_contact_add( struct im_connection *ic, bee_user_t *bu )
972{
973        return msn_soap_start( ic, bu,
974                               msn_soap_ab_contact_add_build_request,
975                               msn_soap_ab_contact_add_parser,
976                               msn_soap_ab_contact_add_handle_response,
977                               msn_soap_ab_contact_add_free_data );
978}
979
980/* Remove a contact. */
981static int msn_soap_ab_contact_del_build_request( struct msn_soap_req_data *soap_req )
982{
983        struct msn_data *md = soap_req->ic->proto_data;
984        const char *cid = soap_req->data;
985       
986        soap_req->url = g_strdup( SOAP_ADDRESSBOOK_URL );
987        soap_req->action = g_strdup( SOAP_AB_CONTACT_DEL_ACTION );
988        soap_req->payload = msn_soap_abservice_build( SOAP_AB_CONTACT_DEL_PAYLOAD,
989                "Timer", md->tokens[1], cid );
990       
991        return 1;
992}
993
994static int msn_soap_ab_contact_del_handle_response( struct msn_soap_req_data *soap_req )
995{
996        /* TODO: Ack the change? Not sure what the NAKs look like.. */
997        return MSN_SOAP_OK;
998}
999
1000static int msn_soap_ab_contact_del_free_data( struct msn_soap_req_data *soap_req )
1001{
1002        g_free( soap_req->data );
1003        return 0;
1004}
1005
1006int msn_soap_ab_contact_del( struct im_connection *ic, bee_user_t *bu )
1007{
1008        struct msn_buddy_data *bd = bu->data;
1009       
1010        return msn_soap_start( ic, g_strdup( bd->cid ),
1011                               msn_soap_ab_contact_del_build_request,
1012                               NULL,
1013                               msn_soap_ab_contact_del_handle_response,
1014                               msn_soap_ab_contact_del_free_data );
1015}
1016
1017
1018
1019/* Storage stuff: Fetch profile. */
1020static int msn_soap_profile_get_build_request( struct msn_soap_req_data *soap_req )
1021{
1022        struct msn_data *md = soap_req->ic->proto_data;
1023       
1024        soap_req->url = g_strdup( SOAP_STORAGE_URL );
1025        soap_req->action = g_strdup( SOAP_PROFILE_GET_ACTION );
1026        soap_req->payload = g_markup_printf_escaped( SOAP_PROFILE_GET_PAYLOAD,
1027                md->tokens[3], (char*) soap_req->data );
1028       
1029        return 1;
1030}
1031
1032static xt_status msn_soap_profile_get_result( struct xt_node *node, gpointer data )
1033{
1034        struct msn_soap_req_data *soap_req = data;
1035        struct im_connection *ic = soap_req->ic;
1036        struct msn_data *md = soap_req->ic->proto_data;
1037        struct xt_node *dn;
1038       
1039        if( ( dn = xt_find_node( node->children, "DisplayName" ) ) && dn->text )
1040        {
1041                set_t *set = set_find( &ic->acc->set, "display_name" );
1042                g_free( set->value );
1043                set->value = g_strdup( dn->text );
1044               
1045                md->flags |= MSN_GOT_PROFILE_DN;
1046        }
1047       
1048        return XT_HANDLED;
1049}
1050
1051static const struct xt_handler_entry msn_soap_profile_get_parser[] = {
1052        { "ExpressionProfile", "GetProfileResult", msn_soap_profile_get_result },
1053        { NULL,               NULL,     NULL                        }
1054};
1055
1056static int msn_soap_profile_get_handle_response( struct msn_soap_req_data *soap_req )
1057{
1058        struct msn_data *md = soap_req->ic->proto_data;
1059       
1060        md->flags |= MSN_GOT_PROFILE;
1061        msn_ns_finish_login( soap_req->ic );
1062       
1063        return MSN_SOAP_OK;
1064}
1065
1066static int msn_soap_profile_get_free_data( struct msn_soap_req_data *soap_req )
1067{
1068        g_free( soap_req->data );
1069        return 0;
1070}
1071
1072int msn_soap_profile_get( struct im_connection *ic, const char *cid )
1073{
1074        return msn_soap_start( ic, g_strdup( cid ),
1075                               msn_soap_profile_get_build_request,
1076                               msn_soap_profile_get_parser,
1077                               msn_soap_profile_get_handle_response,
1078                               msn_soap_profile_get_free_data );
1079}
Note: See TracBrowser for help on using the repository browser.