source: protocols/msn/msn.c @ 693aca0

Last change on this file since 693aca0 was 8bcd160, checked in by dequis <dx@…>, at 2015-04-06T16:22:05Z

msn: remove old/broken/unused msnftp stuff (requires distclean!)

Since this removes invitation.h, do "make distclean" to fix build errors

MSNFTP is a file transfer method used by early msn messenger versions,
and has been replaced by MSNP2P probably 10 years ago.

This code was disabled/commented out in bitlbee

  • Property mode set to 100644
File size: 12.4 KB
Line 
1/********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2013 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/* MSN module - Main file; functions to be called from BitlBee          */
8
9/*
10  This program is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License with
21  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
22  if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
23  Fifth Floor, Boston, MA  02110-1301  USA
24*/
25
26#include "nogaim.h"
27#include "soap.h"
28#include "msn.h"
29
30int msn_chat_id;
31GSList *msn_connections;
32GSList *msn_switchboards;
33
34static char *set_eval_display_name(set_t *set, char *value);
35
36static void msn_init(account_t *acc)
37{
38        set_t *s;
39
40        s = set_add(&acc->set, "display_name", NULL, set_eval_display_name, acc);
41        s->flags |= SET_NOSAVE | ACC_SET_ONLINE_ONLY;
42
43        s = set_add(&acc->set, "server", NULL, set_eval_account, acc);
44        s->flags |= SET_NOSAVE | ACC_SET_OFFLINE_ONLY;
45
46        s = set_add(&acc->set, "port", MSN_NS_PORT, set_eval_int, acc);
47        s->flags |= ACC_SET_OFFLINE_ONLY;
48
49        set_add(&acc->set, "mail_notifications", "false", set_eval_bool, acc);
50        set_add(&acc->set, "switchboard_keepalives", "false", set_eval_bool, acc);
51
52        acc->flags |= ACC_FLAG_AWAY_MESSAGE | ACC_FLAG_STATUS_MESSAGE |
53                      ACC_FLAG_HANDLE_DOMAINS;
54}
55
56static void msn_login(account_t *acc)
57{
58        struct im_connection *ic = imcb_new(acc);
59        struct msn_data *md = g_new0(struct msn_data, 1);
60        char *server = set_getstr(&ic->acc->set, "server");
61
62        ic->proto_data = md;
63        ic->flags |= OPT_PONGS | OPT_PONGED;
64
65        if (!server) {
66                imcb_error(ic, "The msn protocol is disabled in this version because most servers disabled MSNP18 over port 1863.");
67                imcb_error(ic, "If you find a working server, you can change the 'server' setting of this account. Good luck!");
68                imcb_error(ic, "See also: http://ismsndeadyet.com/"); // shameless plug
69                imc_logout(ic, FALSE);
70                return;
71        }
72
73        if (strchr(acc->user, '@') == NULL) {
74                imcb_error(ic, "Invalid account name");
75                imc_logout(ic, FALSE);
76                return;
77        }
78
79        md->ic = ic;
80        md->away_state = msn_away_state_list;
81        md->domaintree = g_tree_new(msn_domaintree_cmp);
82        md->ns->fd = -1;
83
84        msn_connections = g_slist_prepend(msn_connections, ic);
85
86        imcb_log(ic, "Connecting");
87        msn_ns_connect(ic, md->ns, server,
88                       set_getint(&ic->acc->set, "port"));
89}
90
91static void msn_logout(struct im_connection *ic)
92{
93        struct msn_data *md = ic->proto_data;
94        GSList *l;
95        int i;
96
97        if (md) {
98                msn_ns_close(md->ns);
99
100                while (md->switchboards) {
101                        msn_sb_destroy(md->switchboards->data);
102                }
103
104                msn_msgq_purge(ic, &md->msgq);
105                msn_soapq_flush(ic, FALSE);
106
107                for (i = 0; i < sizeof(md->tokens) / sizeof(md->tokens[0]); i++) {
108                        g_free(md->tokens[i]);
109                }
110                g_free(md->lock_key);
111                g_free(md->pp_policy);
112                g_free(md->uuid);
113
114                while (md->groups) {
115                        struct msn_group *mg = md->groups->data;
116                        md->groups = g_slist_remove(md->groups, mg);
117                        g_free(mg->id);
118                        g_free(mg->name);
119                        g_free(mg);
120                }
121
122                g_free(md->profile_rid);
123
124                if (md->domaintree) {
125                        g_tree_destroy(md->domaintree);
126                }
127                md->domaintree = NULL;
128
129                while (md->grpq) {
130                        struct msn_groupadd *ga = md->grpq->data;
131                        md->grpq = g_slist_remove(md->grpq, ga);
132                        g_free(ga->group);
133                        g_free(ga->who);
134                        g_free(ga);
135                }
136
137                g_free(md);
138        }
139
140        for (l = ic->permit; l; l = l->next) {
141                g_free(l->data);
142        }
143        g_slist_free(ic->permit);
144
145        for (l = ic->deny; l; l = l->next) {
146                g_free(l->data);
147        }
148        g_slist_free(ic->deny);
149
150        msn_connections = g_slist_remove(msn_connections, ic);
151}
152
153static int msn_buddy_msg(struct im_connection *ic, char *who, char *message, int away)
154{
155        struct bee_user *bu = bee_user_by_handle(ic->bee, ic, who);
156        struct msn_buddy_data *bd = bu ? bu->data : NULL;
157        struct msn_switchboard *sb;
158
159#ifdef DEBUG
160        if (strcmp(who, "raw") == 0) {
161                msn_ns_write(ic, -1, "%s\r\n", message);
162        } else
163#endif
164        if (bd && bd->flags & MSN_BUDDY_FED) {
165                msn_ns_sendmessage(ic, bu, message);
166        } else if ((sb = msn_sb_by_handle(ic, who))) {
167                return(msn_sb_sendmessage(sb, message));
168        } else {
169                struct msn_message *m;
170
171                /* Create a message. We have to arrange a usable switchboard, and send the message later. */
172                m = g_new0(struct msn_message, 1);
173                m->who = g_strdup(who);
174                m->text = g_strdup(message);
175
176                return msn_sb_write_msg(ic, m);
177        }
178
179        return(0);
180}
181
182static GList *msn_away_states(struct im_connection *ic)
183{
184        static GList *l = NULL;
185        int i;
186
187        if (l == NULL) {
188                for (i = 0; *msn_away_state_list[i].code; i++) {
189                        if (*msn_away_state_list[i].name) {
190                                l = g_list_append(l, (void *) msn_away_state_list[i].name);
191                        }
192                }
193        }
194
195        return l;
196}
197
198static void msn_set_away(struct im_connection *ic, char *state, char *message)
199{
200        char *uux;
201        struct msn_data *md = ic->proto_data;
202
203        if (state == NULL) {
204                md->away_state = msn_away_state_list;
205        } else if ((md->away_state = msn_away_state_by_name(state)) == NULL) {
206                md->away_state = msn_away_state_list + 1;
207        }
208
209        if (!msn_ns_write(ic, -1, "CHG %d %s %d:%02d\r\n", ++md->trId, md->away_state->code, MSN_CAP1, MSN_CAP2)) {
210                return;
211        }
212
213        uux = g_markup_printf_escaped("<EndpointData><Capabilities>%d:%02d"
214                                      "</Capabilities></EndpointData>",
215                                      MSN_CAP1, MSN_CAP2);
216        msn_ns_write(ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen(uux), uux);
217        g_free(uux);
218
219        uux = g_markup_printf_escaped("<PrivateEndpointData><EpName>%s</EpName>"
220                                      "<Idle>%s</Idle><ClientType>%d</ClientType>"
221                                      "<State>%s</State></PrivateEndpointData>",
222                                      md->uuid,
223                                      strcmp(md->away_state->code, "IDL") ? "false" : "true",
224                                      1,  /* ? */
225                                      md->away_state->code);
226        msn_ns_write(ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen(uux), uux);
227        g_free(uux);
228
229        uux = g_markup_printf_escaped("<Data><DDP></DDP><PSM>%s</PSM>"
230                                      "<CurrentMedia></CurrentMedia>"
231                                      "<MachineGuid>%s</MachineGuid></Data>",
232                                      message ? message : "", md->uuid);
233        msn_ns_write(ic, -1, "UUX %d %zd\r\n%s", ++md->trId, strlen(uux), uux);
234        g_free(uux);
235}
236
237static void msn_get_info(struct im_connection *ic, char *who)
238{
239        /* Just make an URL and let the user fetch the info */
240        imcb_log(ic, "%s\n%s: %s%s", _("User Info"), _("For now, fetch yourself"), PROFILE_URL, who);
241}
242
243static void msn_add_buddy(struct im_connection *ic, char *who, char *group)
244{
245        struct bee_user *bu = bee_user_by_handle(ic->bee, ic, who);
246
247        msn_buddy_list_add(ic, MSN_BUDDY_FL, who, who, group);
248        if (bu && bu->group) {
249                msn_buddy_list_remove(ic, MSN_BUDDY_FL, who, bu->group->name);
250        }
251}
252
253static void msn_remove_buddy(struct im_connection *ic, char *who, char *group)
254{
255        msn_buddy_list_remove(ic, MSN_BUDDY_FL, who, NULL);
256}
257
258static void msn_chat_msg(struct groupchat *c, char *message, int flags)
259{
260        struct msn_switchboard *sb = msn_sb_by_chat(c);
261
262        if (sb) {
263                msn_sb_sendmessage(sb, message);
264        }
265        /* FIXME: Error handling (although this can't happen unless something's
266           already severely broken) disappeared here! */
267}
268
269static void msn_chat_invite(struct groupchat *c, char *who, char *message)
270{
271        struct msn_switchboard *sb = msn_sb_by_chat(c);
272
273        if (sb) {
274                msn_sb_write(sb, "CAL %d %s\r\n", ++sb->trId, who);
275        }
276}
277
278static void msn_chat_leave(struct groupchat *c)
279{
280        struct msn_switchboard *sb = msn_sb_by_chat(c);
281
282        if (sb) {
283                msn_sb_write(sb, "OUT\r\n");
284        }
285}
286
287static struct groupchat *msn_chat_with(struct im_connection *ic, char *who)
288{
289        struct msn_switchboard *sb;
290        struct groupchat *c = imcb_chat_new(ic, who);
291
292        if ((sb = msn_sb_by_handle(ic, who))) {
293                debug("Converting existing switchboard to %s to a groupchat", who);
294                return msn_sb_to_chat(sb);
295        } else {
296                struct msn_message *m;
297
298                /* Create a magic message. This is quite hackish, but who cares? :-P */
299                m = g_new0(struct msn_message, 1);
300                m->who = g_strdup(who);
301                m->text = g_strdup(GROUPCHAT_SWITCHBOARD_MESSAGE);
302
303                msn_sb_write_msg(ic, m);
304
305                return c;
306        }
307}
308
309static void msn_keepalive(struct im_connection *ic)
310{
311        msn_ns_write(ic, -1, "PNG\r\n");
312}
313
314static void msn_add_permit(struct im_connection *ic, char *who)
315{
316        msn_buddy_list_add(ic, MSN_BUDDY_AL, who, who, NULL);
317}
318
319static void msn_rem_permit(struct im_connection *ic, char *who)
320{
321        msn_buddy_list_remove(ic, MSN_BUDDY_AL, who, NULL);
322}
323
324static void msn_add_deny(struct im_connection *ic, char *who)
325{
326        struct msn_switchboard *sb;
327
328        msn_buddy_list_add(ic, MSN_BUDDY_BL, who, who, NULL);
329
330        /* If there's still a conversation with this person, close it. */
331        if ((sb = msn_sb_by_handle(ic, who))) {
332                msn_sb_destroy(sb);
333        }
334}
335
336static void msn_rem_deny(struct im_connection *ic, char *who)
337{
338        msn_buddy_list_remove(ic, MSN_BUDDY_BL, who, NULL);
339}
340
341static int msn_send_typing(struct im_connection *ic, char *who, int typing)
342{
343        struct bee_user *bu = bee_user_by_handle(ic->bee, ic, who);
344
345        if (!(bu->flags & BEE_USER_ONLINE)) {
346                return 0;
347        } else if (typing & OPT_TYPING) {
348                return(msn_buddy_msg(ic, who, TYPING_NOTIFICATION_MESSAGE, 0));
349        } else {
350                return 1;
351        }
352}
353
354static char *set_eval_display_name(set_t *set, char *value)
355{
356        account_t *acc = set->data;
357        struct im_connection *ic = acc->ic;
358        struct msn_data *md = ic->proto_data;
359
360        if (md->flags & MSN_EMAIL_UNVERIFIED) {
361                imcb_log(ic, "Warning: Your e-mail address is unverified. MSN doesn't allow "
362                         "changing your display name until your e-mail address is verified.");
363        }
364
365        if (md->flags & MSN_GOT_PROFILE_DN) {
366                msn_soap_profile_set_dn(ic, value);
367        } else {
368                msn_soap_addressbook_set_display_name(ic, value);
369        }
370
371        return msn_ns_set_display_name(ic, value) ? value : NULL;
372}
373
374static void msn_buddy_data_add(bee_user_t *bu)
375{
376        struct msn_data *md = bu->ic->proto_data;
377        struct msn_buddy_data *bd;
378        char *handle;
379
380        bd = bu->data = g_new0(struct msn_buddy_data, 1);
381        g_tree_insert(md->domaintree, bu->handle, bu);
382
383        for (handle = bu->handle; g_ascii_isdigit(*handle); handle++) {
384                ;
385        }
386        if (*handle == ':') {
387                /* Pass a nick hint so hopefully the stupid numeric prefix
388                   won't show up to the user.  */
389                char *s = strchr(++handle, '@');
390                if (s) {
391                        handle = g_strndup(handle, s - handle);
392                        imcb_buddy_nick_hint(bu->ic, bu->handle, handle);
393                        g_free(handle);
394                }
395
396                bd->flags |= MSN_BUDDY_FED;
397        }
398}
399
400static void msn_buddy_data_free(bee_user_t *bu)
401{
402        struct msn_data *md = bu->ic->proto_data;
403        struct msn_buddy_data *bd = bu->data;
404
405        g_free(bd->cid);
406        g_free(bd);
407
408        g_tree_remove(md->domaintree, bu->handle);
409}
410
411GList *msn_buddy_action_list(bee_user_t *bu)
412{
413        static GList *ret = NULL;
414
415        if (ret == NULL) {
416                static const struct buddy_action ba[2] = {
417                        { "NUDGE", "Draw attention" },
418                };
419
420                ret = g_list_prepend(ret, (void *) ba + 0);
421        }
422
423        return ret;
424}
425
426void *msn_buddy_action(struct bee_user *bu, const char *action, char * const args[], void *data)
427{
428        if (g_strcasecmp(action, "NUDGE") == 0) {
429                msn_buddy_msg(bu->ic, bu->handle, NUDGE_MESSAGE, 0);
430        }
431
432        return NULL;
433}
434
435void msn_initmodule()
436{
437        struct prpl *ret = g_new0(struct prpl, 1);
438
439        ret->name = "msn";
440        ret->mms = 1409;         /* this guess taken from libotr UPGRADING file */
441        ret->login = msn_login;
442        ret->init = msn_init;
443        ret->logout = msn_logout;
444        ret->buddy_msg = msn_buddy_msg;
445        ret->away_states = msn_away_states;
446        ret->set_away = msn_set_away;
447        ret->get_info = msn_get_info;
448        ret->add_buddy = msn_add_buddy;
449        ret->remove_buddy = msn_remove_buddy;
450        ret->chat_msg = msn_chat_msg;
451        ret->chat_invite = msn_chat_invite;
452        ret->chat_leave = msn_chat_leave;
453        ret->chat_with = msn_chat_with;
454        ret->keepalive = msn_keepalive;
455        ret->add_permit = msn_add_permit;
456        ret->rem_permit = msn_rem_permit;
457        ret->add_deny = msn_add_deny;
458        ret->rem_deny = msn_rem_deny;
459        ret->send_typing = msn_send_typing;
460        ret->handle_cmp = g_strcasecmp;
461        ret->buddy_data_add = msn_buddy_data_add;
462        ret->buddy_data_free = msn_buddy_data_free;
463        ret->buddy_action_list = msn_buddy_action_list;
464        ret->buddy_action = msn_buddy_action;
465
466        register_protocol(ret);
467}
Note: See TracBrowser for help on using the repository browser.