source: protocols/msn/ns.c @ e61f9d1

Last change on this file since e61f9d1 was e61f9d1, checked in by dequis <dx@…>, at 2015-11-28T18:32:21Z

msn: Send VER/CVR/USR together in the first request for faster login

  • Property mode set to 100644
File size: 19.6 KB
Line 
1/********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2012 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., 51 Franklin St.,
23  Fifth Floor, Boston, MA  02110-1301  USA
24*/
25
26#include <ctype.h>
27#include <sys/utsname.h>
28#include "nogaim.h"
29#include "msn.h"
30#include "md5.h"
31#include "sha1.h"
32#include "soap.h"
33#include "xmltree.h"
34
35static gboolean msn_ns_connected(gpointer data, gint source, b_input_condition cond);
36static gboolean msn_ns_callback(gpointer data, gint source, b_input_condition cond);
37
38static void msn_ns_send_adl_start(struct im_connection *ic);
39static void msn_ns_send_adl(struct im_connection *ic);
40static void msn_ns_structured_message(struct msn_data *md, char *msg, int msglen, char **cmd);
41static void msn_ns_sdg(struct msn_data *md, char *who, char **parts, char *action, gboolean selfmessage);
42static void msn_ns_nfy(struct msn_data *md, char *who, char **parts, char *action, gboolean is_put);
43
44int msn_ns_write(struct im_connection *ic, int fd, const char *fmt, ...)
45{
46        struct msn_data *md = ic->proto_data;
47        va_list params;
48        char *out;
49        size_t len;
50        int st;
51
52        va_start(params, fmt);
53        out = g_strdup_vprintf(fmt, params);
54        va_end(params);
55
56        if (fd < 0) {
57                fd = md->fd;
58        }
59
60        if (getenv("BITLBEE_DEBUG")) {
61                fprintf(stderr, "\x1b[91m>>>[NS%d] %s\n\x1b[97m", fd, out);
62        }
63
64        len = strlen(out);
65
66        if (md->is_http) {
67                st = len;
68                msn_gw_write(md->gw, out, len);
69        } else {
70                st = write(fd, out, len);
71        }
72
73        g_free(out);
74        if (st != len) {
75                imcb_error(ic, "Short write() to main server");
76                imc_logout(ic, TRUE);
77                return 0;
78        }
79
80        return 1;
81}
82
83gboolean msn_ns_connect(struct im_connection *ic, const char *host, int port)
84{
85        struct msn_data *md = ic->proto_data;
86
87        if (md->fd >= 0) {
88                closesocket(md->fd);
89        }
90
91        if (md->is_http) {
92                md->gw = msn_gw_new(ic);
93                md->gw->callback = msn_ns_callback;
94                msn_ns_connected(md, -1, B_EV_IO_READ);
95        } else {
96                md->fd = proxy_connect(host, port, msn_ns_connected, md);
97                if (md->fd < 0) {
98                        imcb_error(ic, "Could not connect to server");
99                        imc_logout(ic, TRUE);
100                        return FALSE;
101                }
102        }
103
104        return TRUE;
105}
106
107static gboolean msn_ns_connected(gpointer data, gint source, b_input_condition cond)
108{
109        struct msn_data *md = data;
110        struct im_connection *ic = md->ic;
111
112        /* this should be taken from XFR, but hardcoding it for now. it also prevents more redirects. */
113        const char *redir_data = "VmVyc2lvbjogMQ0KWGZyQ291bnQ6IDINCklzR2VvWGZyOiB0cnVlDQo=";
114
115        if (source == -1 && !md->is_http) {
116                imcb_error(ic, "Could not connect to server");
117                imc_logout(ic, TRUE);
118                return FALSE;
119        }
120
121        g_free(md->rxq);
122        md->rxlen = 0;
123        md->rxq = g_new0(char, 1);
124
125        if (md->uuid == NULL) {
126                struct utsname name;
127                sha1_state_t sha[1];
128
129                /* UUID == SHA1("BitlBee" + my hostname + MSN username) */
130                sha1_init(sha);
131                sha1_append(sha, (void *) "BitlBee", 7);
132                if (uname(&name) == 0) {
133                        sha1_append(sha, (void *) name.nodename, strlen(name.nodename));
134                }
135                sha1_append(sha, (void *) ic->acc->user, strlen(ic->acc->user));
136                md->uuid = sha1_random_uuid(sha);
137                memcpy(md->uuid, "b171be3e", 8);   /* :-P */
138        }
139
140        /* Having to handle potential errors in each write sure makes these ifs awkward...*/
141
142        if (msn_ns_write(ic, source, "VER %d %s CVR0\r\n", ++md->trId, MSNP_VER) &&
143            msn_ns_write(ic, source, "CVR %d 0x0409 mac 10.2.0 ppc macmsgs 3.5.1 macmsgs %s %s\r\n",
144                         ++md->trId, ic->acc->user, redir_data) &&
145            msn_ns_write(ic, md->fd, "USR %d SSO I %s\r\n", ++md->trId, ic->acc->user)) {
146
147                if (!md->is_http) {
148                        md->inpa = b_input_add(md->fd, B_EV_IO_READ, msn_ns_callback, md);
149                }
150                imcb_log(ic, "Connected to server, waiting for reply");
151        }
152
153        return FALSE;
154}
155
156void msn_ns_close(struct msn_data *md)
157{
158        if (md->gw) {
159                msn_gw_free(md->gw);
160        }
161        if (md->fd >= 0) {
162                closesocket(md->fd);
163                b_event_remove(md->inpa);
164        }
165
166        md->fd = md->inpa = -1;
167        g_free(md->rxq);
168        g_free(md->cmd_text);
169
170        md->rxlen = 0;
171        md->rxq = NULL;
172        md->cmd_text = NULL;
173}
174
175static gboolean msn_ns_callback(gpointer data, gint source, b_input_condition cond)
176{
177        struct msn_data *md = data;
178        struct im_connection *ic = md->ic;
179        char *bytes;
180        int st;
181
182        if (md->is_http) {
183                st = msn_gw_read(md->gw, &bytes);
184        } else {
185                bytes = g_malloc(1024);
186                st = read(md->fd, bytes, 1024);
187        }
188
189        if (st <= 0) {
190                imcb_error(ic, "Error while reading from server");
191                imc_logout(ic, TRUE);
192                g_free(bytes);
193                return FALSE;
194        }
195
196        msn_queue_feed(md, bytes, st);
197
198        g_free(bytes);
199
200        return msn_handler(md);
201}
202
203int msn_ns_command(struct msn_data *md, char **cmd, int num_parts)
204{
205        struct im_connection *ic = md->ic;
206
207        if (num_parts == 0) {
208                /* Hrrm... Empty command...? Ignore? */
209                return(1);
210        }
211
212        if (strcmp(cmd[0], "VER") == 0) {
213                if (cmd[2] && strncmp(cmd[2], MSNP_VER, 5) != 0) {
214                        imcb_error(ic, "Unsupported protocol");
215                        imc_logout(ic, FALSE);
216                        return(0);
217                }
218
219        } else if (strcmp(cmd[0], "CVR") == 0) {
220                /* We don't give a damn about the information we just received */
221        } else if (strcmp(cmd[0], "XFR") == 0) {
222                char *server;
223                int port;
224
225                if (num_parts >= 6 && strcmp(cmd[2], "NS") == 0) {
226                        b_event_remove(md->inpa);
227                        md->inpa = -1;
228
229                        server = strchr(cmd[3], ':');
230                        if (!server) {
231                                imcb_error(ic, "Syntax error");
232                                imc_logout(ic, TRUE);
233                                return(0);
234                        }
235                        *server = 0;
236                        port = atoi(server + 1);
237                        server = cmd[3];
238
239                        imcb_log(ic, "Transferring to other server");
240                        return msn_ns_connect(ic, server, port);
241                } else {
242                        imcb_error(ic, "Syntax error");
243                        imc_logout(ic, TRUE);
244                        return(0);
245                }
246        } else if (strcmp(cmd[0], "USR") == 0) {
247                if (num_parts >= 6 && strcmp(cmd[2], "SSO") == 0 &&
248                    strcmp(cmd[3], "S") == 0) {
249                        g_free(md->pp_policy);
250                        md->pp_policy = g_strdup(cmd[4]);
251                        msn_soap_passport_sso_request(ic, cmd[5]);
252                } else if (strcmp(cmd[2], "OK") == 0) {
253                        /* If the number after the handle is 0, the e-mail
254                           address is unverified, which means we can't change
255                           the display name. */
256                        if (cmd[4][0] == '0') {
257                                md->flags |= MSN_EMAIL_UNVERIFIED;
258                        }
259
260                        imcb_log(ic, "Authenticated, getting buddy list");
261                        msn_soap_memlist_request(ic);
262                } else {
263                        imcb_error(ic, "Unknown authentication type");
264                        imc_logout(ic, FALSE);
265                        return(0);
266                }
267        } else if (strcmp(cmd[0], "MSG") == 0) {
268                if (num_parts < 4) {
269                        imcb_error(ic, "Syntax error");
270                        imc_logout(ic, TRUE);
271                        return(0);
272                }
273
274                md->msglen = atoi(cmd[3]);
275
276                if (md->msglen <= 0) {
277                        imcb_error(ic, "Syntax error");
278                        imc_logout(ic, TRUE);
279                        return(0);
280                }
281        } else if (strcmp(cmd[0], "ADL") == 0) {
282                if (num_parts >= 3 && strcmp(cmd[2], "OK") == 0) {
283                        msn_ns_send_adl(ic);
284                        return msn_ns_finish_login(ic);
285                } else if (num_parts >= 3) {
286                        md->msglen = atoi(cmd[2]);
287                }
288        } else if (strcmp(cmd[0], "CHL") == 0) {
289                char *resp;
290                int st;
291
292                if (num_parts < 3) {
293                        imcb_error(ic, "Syntax error");
294                        imc_logout(ic, TRUE);
295                        return(0);
296                }
297
298                resp = msn_p11_challenge(cmd[2]);
299
300                st =  msn_ns_write(ic, -1, "QRY %d %s %zd\r\n%s",
301                                   ++md->trId, MSNP11_PROD_ID,
302                                   strlen(resp), resp);
303                g_free(resp);
304                return st;
305        } else if (strcmp(cmd[0], "QRY") == 0) {
306                /* CONGRATULATIONS */
307        } else if (strcmp(cmd[0], "OUT") == 0) {
308                imcb_error(ic, "Session terminated by remote server (%s)", cmd[1] ? cmd[1] : "reason unknown");
309                imc_logout(ic, TRUE);
310                return(0);
311        } else if (strcmp(cmd[0], "GCF") == 0) {
312                /* Coming up is cmd[2] bytes of stuff we're supposed to
313                   censore. Meh. */
314                md->msglen = atoi(cmd[2]);
315        } else if ((strcmp(cmd[0], "NFY") == 0) || (strcmp(cmd[0], "SDG") == 0)) {
316                if (num_parts >= 3) {
317                        md->msglen = atoi(cmd[2]);
318                }
319        } else if (strcmp(cmd[0], "PUT") == 0) {
320                if (num_parts >= 4) {
321                        md->msglen = atoi(cmd[3]);
322                }
323        } else if (strcmp(cmd[0], "NOT") == 0) {
324                if (num_parts >= 2) {
325                        md->msglen = atoi(cmd[1]);
326                }
327        } else if (strcmp(cmd[0], "QNG") == 0) {
328                ic->flags |= OPT_PONGED;
329        } else if (g_ascii_isdigit(cmd[0][0])) {
330                int num = atoi(cmd[0]);
331                const struct msn_status_code *err = msn_status_by_number(num);
332
333                imcb_error(ic, "Error reported by MSN server: %s", err->text);
334
335                if (err->flags & STATUS_FATAL) {
336                        imc_logout(ic, TRUE);
337                        return(0);
338                }
339
340                /* Oh yes, errors can have payloads too now. Discard them for now. */
341                if (num_parts >= 3) {
342                        md->msglen = atoi(cmd[2]);
343                }
344        } else {
345                imcb_error(ic, "Received unknown command from main server: %s", cmd[0]);
346        }
347
348        return(1);
349}
350
351int msn_ns_message(struct msn_data *md, char *msg, int msglen, char **cmd, int num_parts)
352{
353        struct im_connection *ic = md->ic;
354        char *body;
355        int blen = 0;
356
357        if (!num_parts) {
358                return(1);
359        }
360
361        if ((body = strstr(msg, "\r\n\r\n"))) {
362                body += 4;
363                blen = msglen - (body - msg);
364        }
365
366        if (strcmp(cmd[0], "MSG") == 0) {
367                if (g_strcasecmp(cmd[1], "Hotmail") == 0) {
368                        char *ct = get_rfc822_header(msg, "Content-Type:", msglen);
369
370                        if (!ct) {
371                                return(1);
372                        }
373
374                        if (g_strncasecmp(ct, "application/x-msmsgssystemmessage", 33) == 0) {
375                                char *mtype;
376                                char *arg1;
377
378                                if (!body) {
379                                        return(1);
380                                }
381
382                                mtype = get_rfc822_header(body, "Type:", blen);
383                                arg1 = get_rfc822_header(body, "Arg1:", blen);
384
385                                if (mtype && strcmp(mtype, "1") == 0) {
386                                        if (arg1) {
387                                                imcb_log(ic, "The server is going down for maintenance in %s minutes.",
388                                                         arg1);
389                                        }
390                                }
391
392                                g_free(arg1);
393                                g_free(mtype);
394                        } else if (g_strncasecmp(ct, "text/x-msmsgsprofile", 20) == 0) {
395                                /* We don't care about this profile for now... */
396                        } else if (g_strncasecmp(ct, "text/x-msmsgsinitialemailnotification", 37) == 0) {
397                                if (set_getbool(&ic->acc->set, "mail_notifications")) {
398                                        char *inbox = get_rfc822_header(body, "Inbox-Unread:", blen);
399                                        char *folders = get_rfc822_header(body, "Folders-Unread:", blen);
400
401                                        if (inbox && folders) {
402                                                imcb_notify_email(ic,
403                                                        "INBOX contains %s new messages, plus %s messages in other folders.", inbox,
404                                                        folders);
405                                        }
406
407                                        g_free(inbox);
408                                        g_free(folders);
409                                }
410                        } else if (g_strncasecmp(ct, "text/x-msmsgsemailnotification", 30) == 0) {
411                                if (set_getbool(&ic->acc->set, "mail_notifications")) {
412                                        char *from = get_rfc822_header(body, "From-Addr:", blen);
413                                        char *fromname = get_rfc822_header(body, "From:", blen);
414
415                                        if (from && fromname) {
416                                                imcb_notify_email(ic, "Received an e-mail message from %s <%s>.", fromname, from);
417                                        }
418
419                                        g_free(from);
420                                        g_free(fromname);
421                                }
422                        } else if (g_strncasecmp(ct, "text/x-msmsgsactivemailnotification", 35) == 0) {
423                                /* Notification that a message has been read... Ignore it */
424                        }
425
426                        g_free(ct);
427                }
428        } else if (strcmp(cmd[0], "ADL") == 0) {
429                struct xt_node *adl, *d, *c;
430
431                if (!(adl = xt_from_string(msg, msglen))) {
432                        return 1;
433                }
434
435                for (d = adl->children; d; d = d->next) {
436                        char *dn;
437                        if (strcmp(d->name, "d") != 0 ||
438                            (dn = xt_find_attr(d, "n")) == NULL) {
439                                continue;
440                        }
441                        for (c = d->children; c; c = c->next) {
442                                bee_user_t *bu;
443                                struct msn_buddy_data *bd;
444                                char *cn, *handle, *f, *l;
445                                int flags;
446
447                                if (strcmp(c->name, "c") != 0 ||
448                                    (l = xt_find_attr(c, "l")) == NULL ||
449                                    (cn = xt_find_attr(c, "n")) == NULL) {
450                                        continue;
451                                }
452
453                                /* FIXME: Use "t" here, guess I should just add it
454                                   as a prefix like elsewhere in the protocol. */
455                                handle = g_strdup_printf("%s@%s", cn, dn);
456                                if (!((bu = bee_user_by_handle(ic->bee, ic, handle)) ||
457                                      (bu = bee_user_new(ic->bee, ic, handle, 0)))) {
458                                        g_free(handle);
459                                        continue;
460                                }
461                                g_free(handle);
462                                bd = bu->data;
463
464                                if ((f = xt_find_attr(c, "f"))) {
465                                        http_decode(f);
466                                        imcb_rename_buddy(ic, bu->handle, f);
467                                }
468
469                                flags = atoi(l) & 15;
470                                if (bd->flags != flags) {
471                                        bd->flags = flags;
472                                        msn_buddy_ask(bu);
473                                }
474                        }
475                }
476        } else if ((strcmp(cmd[0], "SDG") == 0) || (strcmp(cmd[0], "NFY") == 0)) {
477                msn_ns_structured_message(md, msg, msglen, cmd);
478        }
479
480        return 1;
481}
482
483/* returns newly allocated string */
484static char *msn_ns_parse_header_address(struct msn_data *md, char *headers, char *header_name)
485{
486        char *semicolon = NULL;
487        char *header = NULL;
488        char *address = NULL;
489
490        if (!(header = get_rfc822_header(headers, header_name, 0))) {
491                return NULL;
492        }
493
494        /* either the semicolon or the end of the string */
495        semicolon = strchr(header, ';') ? : (header + strlen(header));
496
497        address = g_strndup(header + 2, semicolon - header - 2);
498
499        g_free(header);
500        return address;
501}
502
503static void msn_ns_structured_message(struct msn_data *md, char *msg, int msglen, char **cmd)
504{
505        char **parts = NULL;
506        char *action = NULL;
507        char *who = NULL;
508        gboolean selfmessage = FALSE;
509
510        parts = g_strsplit(msg, "\r\n\r\n", 4);
511
512        if (!(who = msn_ns_parse_header_address(md, parts[0], "From"))) {
513                goto cleanup;
514        }
515
516        if (strcmp(who, md->ic->acc->user) == 0) {
517                selfmessage = TRUE;
518                g_free(who);
519                if (!(who = msn_ns_parse_header_address(md, parts[0], "To"))) {
520                        goto cleanup;
521                }
522        }
523
524        if ((strcmp(cmd[0], "SDG") == 0) && (action = get_rfc822_header(parts[2], "Message-Type", 0))) {
525                msn_ns_sdg(md, who, parts, action, selfmessage);
526
527        } else if ((strcmp(cmd[0], "NFY") == 0) && (action = get_rfc822_header(parts[2], "Uri", 0))) {
528                gboolean is_put = (strcmp(cmd[1], "PUT") == 0);
529                msn_ns_nfy(md, who, parts, action, is_put);
530        }
531
532cleanup:
533        g_strfreev(parts);
534        g_free(action);
535        g_free(who);
536}
537
538static void msn_ns_sdg(struct msn_data *md, char *who, char **parts, char *action, gboolean selfmessage)
539{
540        struct im_connection *ic = md->ic;
541
542        if (strcmp(action, "Control/Typing") == 0 && !selfmessage) {
543                imcb_buddy_typing(ic, who, OPT_TYPING);
544        } else if (strcmp(action, "Text") == 0) {
545                imcb_buddy_msg(ic, who, parts[3], selfmessage ? OPT_SELFMESSAGE : 0, 0);
546        }
547}
548
549static void msn_ns_nfy(struct msn_data *md, char *who, char **parts, char *action, gboolean is_put)
550{
551        struct im_connection *ic = md->ic;
552        struct xt_node *body = NULL;
553        struct xt_node *s = NULL;
554        const char *state = NULL;
555        char *nick = NULL;
556        char *psm = NULL;
557        int flags = OPT_LOGGED_IN;
558
559        if (strcmp(action, "/user") != 0) {
560                return;
561        }
562
563        if (!(body = xt_from_string(parts[3], 0))) {
564                goto cleanup;
565        }
566
567        s = body->children;
568        while ((s = xt_find_node(s, "s"))) {
569                struct xt_node *s2;
570                char *n = xt_find_attr(s, "n");  /* service name: IM, PE, etc */
571
572                if (strcmp(n, "IM") == 0) {
573                        /* IM has basic presence information */
574                        if (!is_put) {
575                                /* NFY DEL with a <s> usually means log out from the last endpoint */
576                                flags &= ~OPT_LOGGED_IN;
577                                break;
578                        }
579
580                        s2 = xt_find_node(s->children, "Status");
581                        if (s2 && s2->text_len) {
582                                const struct msn_away_state *msn_state = msn_away_state_by_code(s2->text);
583                                state = msn_state->name;
584                                if (msn_state != msn_away_state_list) {
585                                        flags |= OPT_AWAY;
586                                }
587                        }
588                } else if (strcmp(n, "PE") == 0) {
589                        if ((s2 = xt_find_node(s->children, "PSM")) && s2->text_len) {
590                                psm = s2->text;
591                        }
592                        if ((s2 = xt_find_node(s->children, "FriendlyName")) && s2->text_len) {
593                                nick = s2->text;
594                        }
595                }
596                s = s->next;
597        }
598
599        imcb_buddy_status(ic, who, flags, state, psm);
600
601        if (nick) {
602                imcb_rename_buddy(ic, who, nick);
603        }
604
605cleanup:
606        xt_free_node(body);
607}
608
609void msn_auth_got_passport_token(struct im_connection *ic, const char *token, const char *error)
610{
611        struct msn_data *md;
612
613        /* Dead connection? */
614        if (g_slist_find(msn_connections, ic) == NULL) {
615                return;
616        }
617
618        md = ic->proto_data;
619
620        if (token) {
621                msn_ns_write(ic, -1, "USR %d SSO S %s %s {%s}\r\n", ++md->trId, md->tokens[0], token, md->uuid);
622        } else {
623                imcb_error(ic, "Error during Passport authentication: %s", error);
624
625                /* don't reconnect with auth errors */
626                if (error && g_str_has_prefix(error, "wsse:FailedAuthentication")) {
627                        imc_logout(ic, FALSE);
628                } else {
629                        imc_logout(ic, TRUE);
630                }
631        }
632}
633
634void msn_auth_got_contact_list(struct im_connection *ic)
635{
636        /* Dead connection? */
637        if (g_slist_find(msn_connections, ic) == NULL) {
638                return;
639        }
640
641        msn_ns_send_adl_start(ic);
642        msn_ns_finish_login(ic);
643}
644
645static gboolean msn_ns_send_adl_1(gpointer key, gpointer value, gpointer data)
646{
647        struct xt_node *adl = data, *d, *c, *s;
648        struct bee_user *bu = value;
649        struct msn_buddy_data *bd = bu->data;
650        struct msn_data *md = bu->ic->proto_data;
651        char handle[strlen(bu->handle) + 1];
652        char *domain;
653        char l[4];
654
655        if ((bd->flags & (MSN_BUDDY_FL | MSN_BUDDY_AL)) == 0 || (bd->flags & MSN_BUDDY_ADL_SYNCED)) {
656                return FALSE;
657        }
658
659        strcpy(handle, bu->handle);
660        if ((domain = strchr(handle, '@')) == NULL) {    /* WTF */
661                return FALSE;
662        }
663        *domain = '\0';
664        domain++;
665
666        if ((d = adl->children) == NULL ||
667            g_strcasecmp(xt_find_attr(d, "n"), domain) != 0) {
668                d = xt_new_node("d", NULL, NULL);
669                xt_add_attr(d, "n", domain);
670                xt_insert_child(adl, d);
671        }
672
673        g_snprintf(l, sizeof(l), "%d", bd->flags & (MSN_BUDDY_FL | MSN_BUDDY_AL));
674        c = xt_new_node("c", NULL, NULL);
675        xt_add_attr(c, "n", handle);
676        xt_add_attr(c, "t", "1");   /* FIXME: Network type, i.e. 32 for Y!MSG */
677        s = xt_new_node("s", NULL, NULL);
678        xt_add_attr(s, "n", "IM");
679        xt_add_attr(s, "l", l);
680        xt_insert_child(c, s);
681        xt_insert_child(d, c);
682
683        /* Do this in batches of 100. */
684        bd->flags |= MSN_BUDDY_ADL_SYNCED;
685        return (--md->adl_todo % 140) == 0;
686}
687
688static void msn_ns_send_adl(struct im_connection *ic)
689{
690        struct xt_node *adl;
691        struct msn_data *md = ic->proto_data;
692        char *adls;
693
694        adl = xt_new_node("ml", NULL, NULL);
695        xt_add_attr(adl, "l", "1");
696        g_tree_foreach(md->domaintree, msn_ns_send_adl_1, adl);
697        if (adl->children == NULL) {
698                /* This tells the caller that we're done now. */
699                md->adl_todo = -1;
700                xt_free_node(adl);
701                return;
702        }
703
704        adls = xt_to_string(adl);
705        xt_free_node(adl);
706        msn_ns_write(ic, -1, "ADL %d %zd\r\n%s", ++md->trId, strlen(adls), adls);
707        g_free(adls);
708}
709
710static void msn_ns_send_adl_start(struct im_connection *ic)
711{
712        struct msn_data *md;
713        GSList *l;
714
715        /* Dead connection? */
716        if (g_slist_find(msn_connections, ic) == NULL) {
717                return;
718        }
719
720        md = ic->proto_data;
721        md->adl_todo = 0;
722        for (l = ic->bee->users; l; l = l->next) {
723                bee_user_t *bu = l->data;
724                struct msn_buddy_data *bd = bu->data;
725
726                if (bu->ic != ic || (bd->flags & (MSN_BUDDY_FL | MSN_BUDDY_AL)) == 0) {
727                        continue;
728                }
729
730                bd->flags &= ~MSN_BUDDY_ADL_SYNCED;
731                md->adl_todo++;
732        }
733
734        msn_ns_send_adl(ic);
735}
736
737int msn_ns_finish_login(struct im_connection *ic)
738{
739        struct msn_data *md = ic->proto_data;
740
741        if (ic->flags & OPT_LOGGED_IN) {
742                return 1;
743        }
744
745        if (md->adl_todo < 0) {
746                md->flags |= MSN_DONE_ADL;
747        }
748
749        if ((md->flags & MSN_DONE_ADL) && (md->flags & MSN_GOT_PROFILE)) {
750                imcb_connected(ic);
751        }
752
753        return 1;
754}
755
756static int msn_ns_send_sdg(struct im_connection *ic, bee_user_t *bu, const char *message_type, const char *text)
757{
758        struct msn_data *md = ic->proto_data;
759        int retval = 0;
760        char *buf;
761
762        buf = g_strdup_printf(MSN_MESSAGE_HEADERS, bu->handle, ic->acc->user, md->uuid, message_type, strlen(text), text);
763        retval = msn_ns_write(ic, -1, "SDG %d %zd\r\n%s", ++md->trId, strlen(buf), buf);
764        g_free(buf);
765        return retval;
766}
767
768int msn_ns_send_typing(struct im_connection *ic, bee_user_t *bu)
769{
770        return msn_ns_send_sdg(ic, bu, "Control/Typing", "");
771}
772
773int msn_ns_send_message(struct im_connection *ic, bee_user_t *bu, const char *text)
774{
775        return msn_ns_send_sdg(ic, bu, "Text", text);
776}
777
Note: See TracBrowser for help on using the repository browser.