source: protocols/msn/soap.c @ afb9ea9

Last change on this file since afb9ea9 was afb9ea9, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-10-07T06:25:35Z

Silencing some (mostly whiny) compiler warnings.

  • 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        int st;
213       
214        if( !getenv( "BITLBEE_DEBUG" ) )
215                return;
216       
217        if( ( s = strstr( headers, "\r\n\r\n" ) ) )
218                st = write( 1, s, s - headers + 4 );
219        else
220                st = write( 1, headers, strlen( headers ) );
221       
222#ifdef DEBUG
223        {
224                struct xt_node *xt = xt_from_string( payload );
225                if( xt )
226                        xt_print( xt );
227                xt_free_node( xt );
228        }
229#endif
230}
231
232int msn_soapq_flush( struct im_connection *ic, gboolean resend )
233{
234        struct msn_data *md = ic->proto_data;
235       
236        while( md->soapq )
237        {
238                if( resend )
239                        msn_soap_send_request( (struct msn_soap_req_data*) md->soapq->data );
240                else
241                        msn_soap_free( (struct msn_soap_req_data*) md->soapq->data );
242                md->soapq = g_slist_remove( md->soapq, md->soapq->data );
243        }
244       
245        return MSN_SOAP_OK;
246}
247
248static void msn_soap_free( struct msn_soap_req_data *soap_req )
249{
250        soap_req->free_data( soap_req );
251        g_free( soap_req->url );
252        g_free( soap_req->action );
253        g_free( soap_req->payload );
254        g_free( soap_req );
255}
256
257
258/* passport_sso: Authentication MSNP15+ */
259
260struct msn_soap_passport_sso_data
261{
262        char *nonce;
263        char *secret;
264        char *error;
265        char *redirect;
266};
267
268static int msn_soap_passport_sso_build_request( struct msn_soap_req_data *soap_req )
269{
270        struct msn_soap_passport_sso_data *sd = soap_req->data;
271        struct im_connection *ic = soap_req->ic;
272        struct msn_data *md = ic->proto_data;
273        char pass[MAX_PASSPORT_PWLEN+1];
274       
275        if( sd->redirect )
276        {
277                soap_req->url = sd->redirect;
278                sd->redirect = NULL;
279        }
280        else if( g_str_has_suffix( ic->acc->user, "@msn.com" ) )
281                soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL_MSN );
282        else
283                soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL );
284       
285        strncpy( pass, ic->acc->pass, MAX_PASSPORT_PWLEN );
286        pass[MAX_PASSPORT_PWLEN] = '\0';
287        soap_req->payload = g_markup_printf_escaped( SOAP_PASSPORT_SSO_PAYLOAD,
288                ic->acc->user, pass, md->pp_policy );
289       
290        return MSN_SOAP_OK;
291}
292
293static xt_status msn_soap_passport_sso_token( struct xt_node *node, gpointer data )
294{
295        struct msn_soap_req_data *soap_req = data;
296        struct msn_soap_passport_sso_data *sd = soap_req->data;
297        struct msn_data *md = soap_req->ic->proto_data;
298        struct xt_node *p;
299        char *id;
300       
301        if( ( id = xt_find_attr( node, "Id" ) ) == NULL )
302                return XT_HANDLED;
303        id += strlen( id ) - 1;
304        if( *id == '1' &&
305            ( p = xt_find_path( node, "../../wst:RequestedProofToken/wst:BinarySecret" ) ) &&
306            p->text )
307                sd->secret = g_strdup( p->text );
308       
309        *id -= '1';
310        if( *id >= 0 && *id < sizeof( md->tokens ) / sizeof( md->tokens[0] ) )
311        {
312                g_free( md->tokens[(int)*id] );
313                md->tokens[(int)*id] = g_strdup( node->text );
314        }
315       
316        return XT_HANDLED;
317}
318
319static xt_status msn_soap_passport_failure( struct xt_node *node, gpointer data )
320{
321        struct msn_soap_req_data *soap_req = data;
322        struct msn_soap_passport_sso_data *sd = soap_req->data;
323        struct xt_node *code = xt_find_node( node->children, "faultcode" );
324        struct xt_node *string = xt_find_node( node->children, "faultstring" );
325        struct xt_node *url;
326       
327        if( code == NULL || code->text_len == 0 )
328                sd->error = g_strdup( "Unknown error" );
329        else if( strcmp( code->text, "psf:Redirect" ) == 0 &&
330                 ( url = xt_find_node( node->children, "psf:redirectUrl" ) ) &&
331                 url->text_len > 0 )
332                sd->redirect = g_strdup( url->text );
333        else
334                sd->error = g_strdup_printf( "%s (%s)", code->text, string && string->text_len ?
335                                             string->text : "no description available" );
336       
337        return XT_HANDLED;
338}
339
340static const struct xt_handler_entry msn_soap_passport_sso_parser[] = {
341        { "wsse:BinarySecurityToken", "wst:RequestedSecurityToken", msn_soap_passport_sso_token },
342        { "S:Fault", "S:Envelope", msn_soap_passport_failure },
343        { NULL, NULL, NULL }
344};
345
346static char *msn_key_fuckery( char *key, int key_len, char *type )
347{
348        unsigned char hash1[20+strlen(type)+1];
349        unsigned char hash2[20];
350        char *ret;
351       
352        sha1_hmac( key, key_len, type, 0, hash1 );
353        strcpy( (char*) hash1 + 20, type );
354        sha1_hmac( key, key_len, (char*) hash1, sizeof( hash1 ) - 1, hash2 );
355       
356        /* This is okay as hash1 is read completely before it's overwritten. */
357        sha1_hmac( key, key_len, (char*) hash1, 20, hash1 );
358        sha1_hmac( key, key_len, (char*) hash1, sizeof( hash1 ) - 1, hash1 );
359       
360        ret = g_malloc( 24 );
361        memcpy( ret, hash2, 20 );
362        memcpy( ret + 20, hash1, 4 );
363        return ret;
364}
365
366static int msn_soap_passport_sso_handle_response( struct msn_soap_req_data *soap_req )
367{
368        struct msn_soap_passport_sso_data *sd = soap_req->data;
369        struct im_connection *ic = soap_req->ic;
370        struct msn_data *md = ic->proto_data;
371        char *key1, *key2, *key3, *blurb64;
372        int key1_len;
373        unsigned char *padnonce, *des3res;
374        struct
375        {
376                unsigned int uStructHeaderSize; // 28. Does not count data
377                unsigned int uCryptMode; // CRYPT_MODE_CBC (1)
378                unsigned int uCipherType; // TripleDES (0x6603)
379                unsigned int uHashType; // SHA1 (0x8004)
380                unsigned int uIVLen;    // 8
381                unsigned int uHashLen;  // 20
382                unsigned int uCipherLen; // 72
383                unsigned char iv[8];
384                unsigned char hash[20];
385                unsigned char cipherbytes[72];
386        } blurb = {
387                GUINT32_TO_LE( 28 ),
388                GUINT32_TO_LE( 1 ),
389                GUINT32_TO_LE( 0x6603 ),
390                GUINT32_TO_LE( 0x8004 ),
391                GUINT32_TO_LE( 8 ),
392                GUINT32_TO_LE( 20 ),
393                GUINT32_TO_LE( 72 ),
394        };
395       
396        if( sd->redirect )
397                return MSN_SOAP_RETRY;
398       
399        if( md->soapq )
400                return msn_soapq_flush( ic, TRUE );
401       
402        if( sd->secret == NULL )
403        {
404                msn_auth_got_passport_token( ic, NULL, sd->error );
405                return MSN_SOAP_OK;
406        }
407
408        key1_len = base64_decode( sd->secret, (unsigned char**) &key1 );
409       
410        key2 = msn_key_fuckery( key1, key1_len, "WS-SecureConversationSESSION KEY HASH" );
411        key3 = msn_key_fuckery( key1, key1_len, "WS-SecureConversationSESSION KEY ENCRYPTION" );
412       
413        sha1_hmac( key2, 24, sd->nonce, 0, blurb.hash );
414        padnonce = g_malloc( strlen( sd->nonce ) + 8 );
415        strcpy( (char*) padnonce, sd->nonce );
416        memset( padnonce + strlen( sd->nonce ), 8, 8 );
417       
418        random_bytes( blurb.iv, 8 );
419       
420        ssl_des3_encrypt( (unsigned char*) key3, 24, padnonce, strlen( sd->nonce ) + 8, blurb.iv, &des3res );
421        memcpy( blurb.cipherbytes, des3res, 72 );
422       
423        blurb64 = base64_encode( (unsigned char*) &blurb, sizeof( blurb ) );
424        msn_auth_got_passport_token( ic, blurb64, NULL );
425       
426        g_free( padnonce );
427        g_free( blurb64 );
428        g_free( des3res );
429        g_free( key1 );
430        g_free( key2 );
431        g_free( key3 );
432       
433        return MSN_SOAP_OK;
434}
435
436static int msn_soap_passport_sso_free_data( struct msn_soap_req_data *soap_req )
437{
438        struct msn_soap_passport_sso_data *sd = soap_req->data;
439       
440        g_free( sd->nonce );
441        g_free( sd->secret );
442        g_free( sd->error );
443        g_free( sd->redirect );
444        g_free( sd );
445       
446        return MSN_SOAP_OK;
447}
448
449int msn_soap_passport_sso_request( struct im_connection *ic, const char *nonce )
450{
451        struct msn_soap_passport_sso_data *sd = g_new0( struct msn_soap_passport_sso_data, 1 );
452       
453        sd->nonce = g_strdup( nonce );
454       
455        return msn_soap_start( ic, sd, msn_soap_passport_sso_build_request,
456                                       msn_soap_passport_sso_parser,
457                                       msn_soap_passport_sso_handle_response,
458                                       msn_soap_passport_sso_free_data );
459}
460
461
462/* oim_send: Sending offline messages */
463
464struct msn_soap_oim_send_data
465{
466        char *to;
467        char *msg;
468        int number;
469        msn_soap_result_t need_retry;
470};
471
472static int msn_soap_oim_build_request( struct msn_soap_req_data *soap_req )
473{
474        struct msn_soap_oim_send_data *oim = soap_req->data;
475        struct im_connection *ic = soap_req->ic;
476        struct msn_data *md = ic->proto_data;
477        char *display_name_b64;
478       
479        display_name_b64 = tobase64( set_getstr( &ic->acc->set, "display_name" ) );
480       
481        soap_req->url = g_strdup( SOAP_OIM_SEND_URL );
482        soap_req->action = g_strdup( SOAP_OIM_SEND_ACTION );
483        soap_req->payload = g_markup_printf_escaped( SOAP_OIM_SEND_PAYLOAD,
484                ic->acc->user, display_name_b64, MSNP_VER, MSNP_BUILD,
485                oim->to, md->tokens[2],
486                MSNP11_PROD_ID, md->lock_key ? md->lock_key : "",
487                oim->number, oim->number, oim->msg );
488       
489        g_free( display_name_b64 );
490        oim->need_retry = MSN_SOAP_OK;
491       
492        return MSN_SOAP_OK;
493}
494
495static xt_status msn_soap_oim_reauth( struct xt_node *node, gpointer data )
496{
497        struct msn_soap_req_data *soap_req = data;
498        struct msn_soap_oim_send_data *oim = soap_req->data;
499        struct im_connection *ic = soap_req->ic;
500        struct msn_data *md = ic->proto_data;
501        struct xt_node *c;
502       
503        if( ( c = xt_find_node( node->children, "LockKeyChallenge" ) ) && c->text_len > 0 )
504        {
505                g_free( md->lock_key );
506                md->lock_key = msn_p11_challenge( c->text );
507                oim->need_retry = MSN_SOAP_RETRY;
508        }
509        if( xt_find_node( node->children, "RequiredAuthPolicy" ) )
510        {
511                oim->need_retry = MSN_SOAP_REAUTH;
512        }
513       
514        return XT_HANDLED;
515}
516
517static const struct xt_handler_entry msn_soap_oim_send_parser[] = {
518        { "detail", "soap:Fault", msn_soap_oim_reauth },
519        { NULL,     NULL,         NULL                }
520};
521
522static int msn_soap_oim_handle_response( struct msn_soap_req_data *soap_req )
523{
524        struct msn_soap_oim_send_data *oim = soap_req->data;
525       
526        if( soap_req->http_req->status_code == 500 && oim->need_retry && soap_req->ttl > 0 )
527        {
528                return oim->need_retry;
529        }
530        else if( soap_req->http_req->status_code == 200 )
531        {
532                imcb_log( soap_req->ic, "Offline message successfully delivered to %s", oim->to );
533                return MSN_SOAP_OK;
534        }
535        else
536        {
537                imcb_log( soap_req->ic, "Failed to deliver offline message to %s:\n%s", oim->to, oim->msg );
538                return MSN_SOAP_ABORT;
539        }
540}
541
542static int msn_soap_oim_free_data( struct msn_soap_req_data *soap_req )
543{
544        struct msn_soap_oim_send_data *oim = soap_req->data;
545       
546        g_free( oim->to );
547        g_free( oim->msg );
548        g_free( oim );
549       
550        return MSN_SOAP_OK;
551}
552
553int msn_soap_oim_send( struct im_connection *ic, const char *to, const char *msg )
554{
555        struct msn_soap_oim_send_data *data;
556       
557        data = g_new0( struct msn_soap_oim_send_data, 1 );
558        data->to = g_strdup( to );
559        data->msg = tobase64( msg );
560        data->number = 1;
561       
562        return msn_soap_start( ic, data, msn_soap_oim_build_request,
563                                         msn_soap_oim_send_parser,
564                                         msn_soap_oim_handle_response,
565                                         msn_soap_oim_free_data );
566}
567
568int msn_soap_oim_send_queue( struct im_connection *ic, GSList **msgq )
569{
570        GSList *l;
571        char *n = NULL;
572       
573        for( l = *msgq; l; l = l->next )
574        {
575                struct msn_message *m = l->data;
576               
577                if( n == NULL )
578                        n = m->who;
579                if( strcmp( n, m->who ) == 0 )
580                        msn_soap_oim_send( ic, m->who, m->text );
581        }
582       
583        while( *msgq != NULL )
584        {
585                struct msn_message *m = (*msgq)->data;
586               
587                g_free( m->who );
588                g_free( m->text );
589                g_free( m );
590               
591                *msgq = g_slist_remove( *msgq, m );
592        }
593       
594        return 1;
595}
596
597
598/* memlist: Fetching the membership list (NOT address book) */
599
600static int msn_soap_memlist_build_request( struct msn_soap_req_data *soap_req )
601{
602        struct msn_data *md = soap_req->ic->proto_data;
603       
604        soap_req->url = g_strdup( SOAP_MEMLIST_URL );
605        soap_req->action = g_strdup( SOAP_MEMLIST_ACTION );
606        soap_req->payload = msn_soap_abservice_build( SOAP_MEMLIST_PAYLOAD, "Initial", md->tokens[1] );
607       
608        return 1;
609}
610
611static xt_status msn_soap_memlist_member( struct xt_node *node, gpointer data )
612{
613        bee_user_t *bu;
614        struct msn_buddy_data *bd;
615        struct xt_node *p;
616        char *role = NULL, *handle = NULL;
617        struct msn_soap_req_data *soap_req = data;
618        struct im_connection *ic = soap_req->ic;
619       
620        if( ( p = xt_find_path( node, "../../MemberRole" ) ) )
621                role = p->text;
622       
623        if( ( p = xt_find_node( node->children, "PassportName" ) ) )
624                handle = p->text;
625       
626        if( !role || !handle || 
627            !( ( bu = bee_user_by_handle( ic->bee, ic, handle ) ) ||
628               ( bu = bee_user_new( ic->bee, ic, handle, 0 ) ) ) )
629                return XT_HANDLED;
630       
631        bd = bu->data;
632        if( strcmp( role, "Allow" ) == 0 )
633        {
634                bd->flags |= MSN_BUDDY_AL;
635                ic->permit = g_slist_prepend( ic->permit, g_strdup( handle ) );
636        }
637        else if( strcmp( role, "Block" ) == 0 )
638        {
639                bd->flags |= MSN_BUDDY_BL;
640                ic->deny = g_slist_prepend( ic->deny, g_strdup( handle ) );
641        }
642        else if( strcmp( role, "Reverse" ) == 0 )
643                bd->flags |= MSN_BUDDY_RL;
644        else if( strcmp( role, "Pending" ) == 0 )
645                bd->flags |= MSN_BUDDY_PL;
646       
647        if( getenv( "BITLBEE_DEBUG" ) )
648                printf( "%p %s %d\n", bu, handle, bd->flags );
649       
650        return XT_HANDLED;
651}
652
653static const struct xt_handler_entry msn_soap_memlist_parser[] = {
654        { "Member", "Members", msn_soap_memlist_member },
655        { NULL,               NULL,     NULL                        }
656};
657
658static int msn_soap_memlist_handle_response( struct msn_soap_req_data *soap_req )
659{
660        msn_soap_addressbook_request( soap_req->ic );
661       
662        return MSN_SOAP_OK;
663}
664
665static int msn_soap_memlist_free_data( struct msn_soap_req_data *soap_req )
666{
667        return 0;
668}
669
670int msn_soap_memlist_request( struct im_connection *ic )
671{
672        return msn_soap_start( ic, NULL, msn_soap_memlist_build_request,
673                                         msn_soap_memlist_parser,
674                                         msn_soap_memlist_handle_response,
675                                         msn_soap_memlist_free_data );
676}
677
678/* Variant: Adding/Removing people */
679struct msn_soap_memlist_edit_data
680{
681        char *handle;
682        gboolean add;
683        msn_buddy_flags_t list;
684};
685
686static int msn_soap_memlist_edit_build_request( struct msn_soap_req_data *soap_req )
687{
688        struct msn_data *md = soap_req->ic->proto_data;
689        struct msn_soap_memlist_edit_data *med = soap_req->data;
690        char *add, *scenario, *list;
691       
692        soap_req->url = g_strdup( SOAP_MEMLIST_URL );
693        if( med->add )
694        {
695                soap_req->action = g_strdup( SOAP_MEMLIST_ADD_ACTION );
696                add = "Add";
697        }
698        else
699        {
700                soap_req->action = g_strdup( SOAP_MEMLIST_DEL_ACTION );
701                add = "Delete";
702        }
703        switch( med->list )
704        {
705        case MSN_BUDDY_AL:
706                scenario = "BlockUnblock";
707                list = "Allow";
708                break;
709        case MSN_BUDDY_BL:
710                scenario = "BlockUnblock";
711                list = "Block";
712                break;
713        case MSN_BUDDY_RL:
714                scenario = "Timer";
715                list = "Reverse";
716                break;
717        case MSN_BUDDY_PL:
718        default:
719                scenario = "Timer";
720                list = "Pending";
721                break;
722        }
723        soap_req->payload = msn_soap_abservice_build( SOAP_MEMLIST_EDIT_PAYLOAD,
724                scenario, md->tokens[1], add, list, med->handle, add );
725       
726        return 1;
727}
728
729static int msn_soap_memlist_edit_handle_response( struct msn_soap_req_data *soap_req )
730{
731        return MSN_SOAP_OK;
732}
733
734static int msn_soap_memlist_edit_free_data( struct msn_soap_req_data *soap_req )
735{
736        struct msn_soap_memlist_edit_data *med = soap_req->data;
737       
738        g_free( med->handle );
739        g_free( med );
740       
741        return 0;
742}
743
744int msn_soap_memlist_edit( struct im_connection *ic, const char *handle, gboolean add, int list )
745{
746        struct msn_soap_memlist_edit_data *med;
747       
748        med = g_new0( struct msn_soap_memlist_edit_data, 1 );
749        med->handle = g_strdup( handle );
750        med->add = add;
751        med->list = list;
752       
753        return msn_soap_start( ic, med, msn_soap_memlist_edit_build_request,
754                                        NULL,
755                                        msn_soap_memlist_edit_handle_response,
756                                        msn_soap_memlist_edit_free_data );
757}
758
759
760/* addressbook: Fetching the membership list (NOT address book) */
761
762static int msn_soap_addressbook_build_request( struct msn_soap_req_data *soap_req )
763{
764        struct msn_data *md = soap_req->ic->proto_data;
765       
766        soap_req->url = g_strdup( SOAP_ADDRESSBOOK_URL );
767        soap_req->action = g_strdup( SOAP_ADDRESSBOOK_ACTION );
768        soap_req->payload = msn_soap_abservice_build( SOAP_ADDRESSBOOK_PAYLOAD, "Initial", md->tokens[1] );
769       
770        return 1;
771}
772
773static xt_status msn_soap_addressbook_group( struct xt_node *node, gpointer data )
774{
775        struct xt_node *p;
776        char *id = NULL, *name = NULL;
777        struct msn_soap_req_data *soap_req = data;
778        struct msn_data *md = soap_req->ic->proto_data;
779       
780        if( ( p = xt_find_path( node, "../groupId" ) ) )
781                id = p->text;
782       
783        if( ( p = xt_find_node( node->children, "name" ) ) )
784                name = p->text;
785       
786        if( id && name )
787        {
788                struct msn_group *mg = g_new0( struct msn_group, 1 );
789                mg->id = g_strdup( id );
790                mg->name = g_strdup( name );
791                md->groups = g_slist_prepend( md->groups, mg );
792        }
793       
794        if( getenv( "BITLBEE_DEBUG" ) )
795                printf( "%s %s\n", id, name );
796       
797        return XT_HANDLED;
798}
799
800static xt_status msn_soap_addressbook_contact( struct xt_node *node, gpointer data )
801{
802        bee_user_t *bu;
803        struct msn_buddy_data *bd;
804        struct xt_node *p;
805        char *id = NULL, *type = NULL, *handle = NULL, *is_msgr = "false",
806             *display_name = NULL, *group_id = NULL;
807        struct msn_soap_req_data *soap_req = data;
808        struct im_connection *ic = soap_req->ic;
809        struct msn_group *group;
810       
811        if( ( p = xt_find_path( node, "../contactId" ) ) )
812                id = p->text;
813        if( ( p = xt_find_node( node->children, "contactType" ) ) )
814                type = p->text;
815        if( ( p = xt_find_node( node->children, "passportName" ) ) )
816                handle = p->text;
817        if( ( p = xt_find_node( node->children, "displayName" ) ) )
818                display_name = p->text;
819        if( ( p = xt_find_node( node->children, "isMessengerUser" ) ) )
820                is_msgr = p->text;
821        if( ( p = xt_find_path( node, "groupIds/guid" ) ) )
822                group_id = p->text;
823       
824        if( type && g_strcasecmp( type, "me" ) == 0 )
825        {
826                set_t *set = set_find( &ic->acc->set, "display_name" );
827                g_free( set->value );
828                set->value = g_strdup( display_name );
829               
830                /* Try to fetch the profile; if the user has one, that's where
831                   we can find the persistent display_name. */
832                if( ( p = xt_find_node( node->children, "CID" ) ) && p->text )
833                        msn_soap_profile_get( ic, p->text );
834               
835                return XT_HANDLED;
836        }
837       
838        if( !bool2int( is_msgr ) || handle == NULL )
839                return XT_HANDLED;
840       
841        if( !( bu = bee_user_by_handle( ic->bee, ic, handle ) ) &&
842            !( bu = bee_user_new( ic->bee, ic, handle, 0 ) ) )
843                return XT_HANDLED;
844       
845        bd = bu->data;
846        bd->flags |= MSN_BUDDY_FL;
847        g_free( bd->cid );
848        bd->cid = g_strdup( id );
849       
850        imcb_rename_buddy( ic, handle, display_name );
851       
852        if( group_id && ( group = msn_group_by_id( ic, group_id ) ) )
853                imcb_add_buddy( ic, handle, group->name );
854       
855        if( getenv( "BITLBEE_DEBUG" ) )
856                printf( "%s %s %s %s\n", id, type, handle, display_name );
857       
858        return XT_HANDLED;
859}
860
861static const struct xt_handler_entry msn_soap_addressbook_parser[] = {
862        { "contactInfo", "Contact", msn_soap_addressbook_contact },
863        { "groupInfo", "Group", msn_soap_addressbook_group },
864        { NULL,               NULL,     NULL                        }
865};
866
867static int msn_soap_addressbook_handle_response( struct msn_soap_req_data *soap_req )
868{
869        GSList *l;
870       
871        for( l = soap_req->ic->bee->users; l; l = l->next )
872        {
873                struct bee_user *bu = l->data;
874               
875                if( bu->ic == soap_req->ic )
876                        msn_buddy_ask( bu );
877        }
878       
879        msn_auth_got_contact_list( soap_req->ic );
880       
881        return MSN_SOAP_OK;
882}
883
884static int msn_soap_addressbook_free_data( struct msn_soap_req_data *soap_req )
885{
886        return 0;
887}
888
889int msn_soap_addressbook_request( struct im_connection *ic )
890{
891        return msn_soap_start( ic, NULL, msn_soap_addressbook_build_request,
892                                         msn_soap_addressbook_parser,
893                                         msn_soap_addressbook_handle_response,
894                                         msn_soap_addressbook_free_data );
895}
896
897/* Variant: Change our display name. */
898static int msn_soap_ab_namechange_build_request( struct msn_soap_req_data *soap_req )
899{
900        struct msn_data *md = soap_req->ic->proto_data;
901       
902        soap_req->url = g_strdup( SOAP_ADDRESSBOOK_URL );
903        soap_req->action = g_strdup( SOAP_AB_NAMECHANGE_ACTION );
904        soap_req->payload = msn_soap_abservice_build( SOAP_AB_NAMECHANGE_PAYLOAD,
905                "Timer", md->tokens[1], (char *) soap_req->data );
906       
907        return 1;
908}
909
910static int msn_soap_ab_namechange_handle_response( struct msn_soap_req_data *soap_req )
911{
912        /* TODO: Ack the change? Not sure what the NAKs look like.. */
913        return MSN_SOAP_OK;
914}
915
916static int msn_soap_ab_namechange_free_data( struct msn_soap_req_data *soap_req )
917{
918        g_free( soap_req->data );
919        return 0;
920}
921
922int msn_soap_addressbook_set_display_name( struct im_connection *ic, const char *new )
923{
924        return msn_soap_start( ic, g_strdup( new ),
925                               msn_soap_ab_namechange_build_request,
926                               NULL,
927                               msn_soap_ab_namechange_handle_response,
928                               msn_soap_ab_namechange_free_data );
929}
930
931/* Add a contact. */
932static int msn_soap_ab_contact_add_build_request( struct msn_soap_req_data *soap_req )
933{
934        struct msn_data *md = soap_req->ic->proto_data;
935        bee_user_t *bu = soap_req->data;
936       
937        soap_req->url = g_strdup( SOAP_ADDRESSBOOK_URL );
938        soap_req->action = g_strdup( SOAP_AB_CONTACT_ADD_ACTION );
939        soap_req->payload = msn_soap_abservice_build( SOAP_AB_CONTACT_ADD_PAYLOAD,
940                "ContactSave", md->tokens[1], bu->handle, bu->fullname ? bu->fullname : bu->handle );
941       
942        return 1;
943}
944
945static xt_status msn_soap_ab_contact_add_cid( struct xt_node *node, gpointer data )
946{
947        struct msn_soap_req_data *soap_req = data;
948        bee_user_t *bu = soap_req->data;
949        struct msn_buddy_data *bd = bu->data;
950       
951        g_free( bd->cid );
952        bd->cid = g_strdup( node->text );
953       
954        return XT_HANDLED;
955}
956
957static const struct xt_handler_entry msn_soap_ab_contact_add_parser[] = {
958        { "guid", "ABContactAddResult", msn_soap_ab_contact_add_cid },
959        { NULL,               NULL,     NULL                        }
960};
961
962static int msn_soap_ab_contact_add_handle_response( struct msn_soap_req_data *soap_req )
963{
964        /* TODO: Ack the change? Not sure what the NAKs look like.. */
965        return MSN_SOAP_OK;
966}
967
968static int msn_soap_ab_contact_add_free_data( struct msn_soap_req_data *soap_req )
969{
970        return 0;
971}
972
973int msn_soap_ab_contact_add( struct im_connection *ic, bee_user_t *bu )
974{
975        return msn_soap_start( ic, bu,
976                               msn_soap_ab_contact_add_build_request,
977                               msn_soap_ab_contact_add_parser,
978                               msn_soap_ab_contact_add_handle_response,
979                               msn_soap_ab_contact_add_free_data );
980}
981
982/* Remove a contact. */
983static int msn_soap_ab_contact_del_build_request( struct msn_soap_req_data *soap_req )
984{
985        struct msn_data *md = soap_req->ic->proto_data;
986        const char *cid = soap_req->data;
987       
988        soap_req->url = g_strdup( SOAP_ADDRESSBOOK_URL );
989        soap_req->action = g_strdup( SOAP_AB_CONTACT_DEL_ACTION );
990        soap_req->payload = msn_soap_abservice_build( SOAP_AB_CONTACT_DEL_PAYLOAD,
991                "Timer", md->tokens[1], cid );
992       
993        return 1;
994}
995
996static int msn_soap_ab_contact_del_handle_response( struct msn_soap_req_data *soap_req )
997{
998        /* TODO: Ack the change? Not sure what the NAKs look like.. */
999        return MSN_SOAP_OK;
1000}
1001
1002static int msn_soap_ab_contact_del_free_data( struct msn_soap_req_data *soap_req )
1003{
1004        g_free( soap_req->data );
1005        return 0;
1006}
1007
1008int msn_soap_ab_contact_del( struct im_connection *ic, bee_user_t *bu )
1009{
1010        struct msn_buddy_data *bd = bu->data;
1011       
1012        return msn_soap_start( ic, g_strdup( bd->cid ),
1013                               msn_soap_ab_contact_del_build_request,
1014                               NULL,
1015                               msn_soap_ab_contact_del_handle_response,
1016                               msn_soap_ab_contact_del_free_data );
1017}
1018
1019
1020
1021/* Storage stuff: Fetch profile. */
1022static int msn_soap_profile_get_build_request( struct msn_soap_req_data *soap_req )
1023{
1024        struct msn_data *md = soap_req->ic->proto_data;
1025       
1026        soap_req->url = g_strdup( SOAP_STORAGE_URL );
1027        soap_req->action = g_strdup( SOAP_PROFILE_GET_ACTION );
1028        soap_req->payload = g_markup_printf_escaped( SOAP_PROFILE_GET_PAYLOAD,
1029                md->tokens[3], (char*) soap_req->data );
1030       
1031        return 1;
1032}
1033
1034static xt_status msn_soap_profile_get_result( struct xt_node *node, gpointer data )
1035{
1036        struct msn_soap_req_data *soap_req = data;
1037        struct im_connection *ic = soap_req->ic;
1038        struct msn_data *md = soap_req->ic->proto_data;
1039        struct xt_node *dn;
1040       
1041        if( ( dn = xt_find_node( node->children, "DisplayName" ) ) && dn->text )
1042        {
1043                set_t *set = set_find( &ic->acc->set, "display_name" );
1044                g_free( set->value );
1045                set->value = g_strdup( dn->text );
1046               
1047                md->flags |= MSN_GOT_PROFILE_DN;
1048        }
1049       
1050        return XT_HANDLED;
1051}
1052
1053static const struct xt_handler_entry msn_soap_profile_get_parser[] = {
1054        { "ExpressionProfile", "GetProfileResult", msn_soap_profile_get_result },
1055        { NULL,               NULL,     NULL                        }
1056};
1057
1058static int msn_soap_profile_get_handle_response( struct msn_soap_req_data *soap_req )
1059{
1060        struct msn_data *md = soap_req->ic->proto_data;
1061       
1062        md->flags |= MSN_GOT_PROFILE;
1063        msn_ns_finish_login( soap_req->ic );
1064       
1065        return MSN_SOAP_OK;
1066}
1067
1068static int msn_soap_profile_get_free_data( struct msn_soap_req_data *soap_req )
1069{
1070        g_free( soap_req->data );
1071        return 0;
1072}
1073
1074int msn_soap_profile_get( struct im_connection *ic, const char *cid )
1075{
1076        return msn_soap_start( ic, g_strdup( cid ),
1077                               msn_soap_profile_get_build_request,
1078                               msn_soap_profile_get_parser,
1079                               msn_soap_profile_get_handle_response,
1080                               msn_soap_profile_get_free_data );
1081}
Note: See TracBrowser for help on using the repository browser.