source: protocols/msn/msn.c @ a6bed1a

Last change on this file since a6bed1a was 99fe030, checked in by dequis <dx@…>, at 2015-05-13T08:05:01Z

msn: Implement sending typing notifications

Also remove some old unused debug stuff

  • Property mode set to 100644
File size: 9.3 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;
32
33static char *set_eval_display_name(set_t *set, char *value);
34
35static void msn_init(account_t *acc)
36{
37        set_t *s;
38
39        s = set_add(&acc->set, "display_name", NULL, set_eval_display_name, acc);
40        s->flags |= SET_NOSAVE | ACC_SET_ONLINE_ONLY;
41
42        s = set_add(&acc->set, "server", NULL, set_eval_account, acc);
43        s->flags |= SET_NOSAVE | ACC_SET_OFFLINE_ONLY;
44
45        s = set_add(&acc->set, "port", MSN_NS_PORT, set_eval_int, acc);
46        s->flags |= ACC_SET_OFFLINE_ONLY;
47
48        set_add(&acc->set, "mail_notifications", "false", set_eval_bool, acc);
49
50        acc->flags |= ACC_FLAG_AWAY_MESSAGE | ACC_FLAG_STATUS_MESSAGE |
51                      ACC_FLAG_HANDLE_DOMAINS;
52}
53
54static void msn_login(account_t *acc)
55{
56        struct im_connection *ic = imcb_new(acc);
57        struct msn_data *md = g_new0(struct msn_data, 1);
58        char *server = set_getstr(&ic->acc->set, "server");
59
60        ic->proto_data = md;
61        ic->flags |= OPT_PONGS | OPT_PONGED;
62
63        if (!server) {
64                server = "geo.gateway.messenger.live.com";
65        }
66
67        if (strchr(acc->user, '@') == NULL) {
68                imcb_error(ic, "Invalid account name");
69                imc_logout(ic, FALSE);
70                return;
71        }
72
73        md->ic = ic;
74        md->away_state = msn_away_state_list;
75        md->domaintree = g_tree_new(msn_domaintree_cmp);
76        md->fd = -1;
77        md->is_http = TRUE;
78
79        msn_connections = g_slist_prepend(msn_connections, ic);
80
81        imcb_log(ic, "Connecting");
82        msn_ns_connect(ic, server,
83                       set_getint(&ic->acc->set, "port"));
84}
85
86static void msn_logout(struct im_connection *ic)
87{
88        struct msn_data *md = ic->proto_data;
89        GSList *l;
90        int i;
91
92        if (md) {
93                msn_ns_close(md);
94
95                msn_soapq_flush(ic, FALSE);
96
97                for (i = 0; i < sizeof(md->tokens) / sizeof(md->tokens[0]); i++) {
98                        g_free(md->tokens[i]);
99                }
100                g_free(md->lock_key);
101                g_free(md->pp_policy);
102                g_free(md->uuid);
103
104                while (md->groups) {
105                        struct msn_group *mg = md->groups->data;
106                        md->groups = g_slist_remove(md->groups, mg);
107                        g_free(mg->id);
108                        g_free(mg->name);
109                        g_free(mg);
110                }
111
112                g_free(md->profile_rid);
113
114                if (md->domaintree) {
115                        g_tree_destroy(md->domaintree);
116                }
117                md->domaintree = NULL;
118
119                while (md->grpq) {
120                        struct msn_groupadd *ga = md->grpq->data;
121                        md->grpq = g_slist_remove(md->grpq, ga);
122                        g_free(ga->group);
123                        g_free(ga->who);
124                        g_free(ga);
125                }
126
127                g_free(md);
128        }
129
130        for (l = ic->permit; l; l = l->next) {
131                g_free(l->data);
132        }
133        g_slist_free(ic->permit);
134
135        for (l = ic->deny; l; l = l->next) {
136                g_free(l->data);
137        }
138        g_slist_free(ic->deny);
139
140        msn_connections = g_slist_remove(msn_connections, ic);
141}
142
143static int msn_buddy_msg(struct im_connection *ic, char *who, char *message, int away)
144{
145        struct bee_user *bu = bee_user_by_handle(ic->bee, ic, who);
146        msn_ns_send_message(ic, bu, message);
147        return 0;
148}
149
150static GList *msn_away_states(struct im_connection *ic)
151{
152        static GList *l = NULL;
153        int i;
154
155        if (l == NULL) {
156                for (i = 0; *msn_away_state_list[i].code; i++) {
157                        if (*msn_away_state_list[i].name) {
158                                l = g_list_append(l, (void *) msn_away_state_list[i].name);
159                        }
160                }
161        }
162
163        return l;
164}
165
166static void msn_set_away(struct im_connection *ic, char *state, char *message)
167{
168        struct msn_data *md = ic->proto_data;
169        char *nick, *psm, *idle, *statecode, *body, *buf;
170
171        if (state == NULL) {
172                md->away_state = msn_away_state_list;
173        } else if ((md->away_state = msn_away_state_by_name(state)) == NULL) {
174                md->away_state = msn_away_state_list + 1;
175        }
176
177        statecode = (char *) md->away_state->code;
178        nick = set_getstr(&ic->acc->set, "display_name");
179        psm = message ? message : "";
180        idle = (strcmp(statecode, "IDL") == 0) ? "false" : "true";
181
182        body = g_markup_printf_escaped(MSN_PUT_USER_BODY,
183                nick, psm, psm, md->uuid, statecode, md->uuid, idle, statecode,
184                MSN_CAP1, MSN_CAP2, MSN_CAP1, MSN_CAP2
185        );
186
187        buf = g_strdup_printf(MSN_PUT_HEADERS, ic->acc->user, ic->acc->user, md->uuid,
188                "/user", "application/user+xml",
189                strlen(body), body);
190        msn_ns_write(ic, -1, "PUT %d %zd\r\n%s", ++md->trId, strlen(buf), buf);
191
192        g_free(buf);
193        g_free(body);
194}
195
196static void msn_get_info(struct im_connection *ic, char *who)
197{
198        /* Just make an URL and let the user fetch the info */
199        imcb_log(ic, "%s\n%s: %s%s", _("User Info"), _("For now, fetch yourself"), PROFILE_URL, who);
200}
201
202static void msn_add_buddy(struct im_connection *ic, char *who, char *group)
203{
204        struct bee_user *bu = bee_user_by_handle(ic->bee, ic, who);
205
206        msn_buddy_list_add(ic, MSN_BUDDY_FL, who, who, group);
207        if (bu && bu->group) {
208                msn_buddy_list_remove(ic, MSN_BUDDY_FL, who, bu->group->name);
209        }
210}
211
212static void msn_remove_buddy(struct im_connection *ic, char *who, char *group)
213{
214        msn_buddy_list_remove(ic, MSN_BUDDY_FL, who, NULL);
215}
216
217static void msn_chat_msg(struct groupchat *c, char *message, int flags)
218{
219        /* TODO: groupchats*/
220}
221
222static void msn_chat_invite(struct groupchat *c, char *who, char *message)
223{
224        /* TODO: groupchats*/
225}
226
227static void msn_chat_leave(struct groupchat *c)
228{
229        /* TODO: groupchats*/
230}
231
232static struct groupchat *msn_chat_with(struct im_connection *ic, char *who)
233{
234        /* TODO: groupchats*/
235        struct groupchat *c = imcb_chat_new(ic, who);
236        return c;
237}
238
239static void msn_keepalive(struct im_connection *ic)
240{
241        msn_ns_write(ic, -1, "PNG\r\n");
242}
243
244static void msn_add_permit(struct im_connection *ic, char *who)
245{
246        msn_buddy_list_add(ic, MSN_BUDDY_AL, who, who, NULL);
247}
248
249static void msn_rem_permit(struct im_connection *ic, char *who)
250{
251        msn_buddy_list_remove(ic, MSN_BUDDY_AL, who, NULL);
252}
253
254static void msn_add_deny(struct im_connection *ic, char *who)
255{
256        msn_buddy_list_add(ic, MSN_BUDDY_BL, who, who, NULL);
257}
258
259static void msn_rem_deny(struct im_connection *ic, char *who)
260{
261        msn_buddy_list_remove(ic, MSN_BUDDY_BL, who, NULL);
262}
263
264static int msn_send_typing(struct im_connection *ic, char *who, int typing)
265{
266        struct bee_user *bu = bee_user_by_handle(ic->bee, ic, who);
267
268        if (!(bu->flags & BEE_USER_ONLINE)) {
269                return 0;
270        } else if (typing & OPT_TYPING) {
271                return msn_ns_send_typing(ic, bu);
272        } else {
273                return 1;
274        }
275}
276
277static char *set_eval_display_name(set_t *set, char *value)
278{
279        account_t *acc = set->data;
280        struct im_connection *ic = acc->ic;
281        struct msn_data *md = ic->proto_data;
282
283        if (md->flags & MSN_EMAIL_UNVERIFIED) {
284                imcb_log(ic, "Warning: Your e-mail address is unverified. MSN doesn't allow "
285                         "changing your display name until your e-mail address is verified.");
286        }
287
288        if (md->flags & MSN_GOT_PROFILE_DN) {
289                msn_soap_profile_set_dn(ic, value);
290        } else {
291                msn_soap_addressbook_set_display_name(ic, value);
292        }
293
294        return msn_ns_set_display_name(ic, value) ? value : NULL;
295}
296
297static void msn_buddy_data_add(bee_user_t *bu)
298{
299        struct msn_data *md = bu->ic->proto_data;
300        struct msn_buddy_data *bd;
301        char *handle;
302
303        bd = bu->data = g_new0(struct msn_buddy_data, 1);
304        g_tree_insert(md->domaintree, bu->handle, bu);
305
306        for (handle = bu->handle; g_ascii_isdigit(*handle); handle++) {
307                ;
308        }
309        if (*handle == ':') {
310                /* Pass a nick hint so hopefully the stupid numeric prefix
311                   won't show up to the user.  */
312                char *s = strchr(++handle, '@');
313                if (s) {
314                        handle = g_strndup(handle, s - handle);
315                        imcb_buddy_nick_hint(bu->ic, bu->handle, handle);
316                        g_free(handle);
317                }
318
319                bd->flags |= MSN_BUDDY_FED;
320        }
321}
322
323static void msn_buddy_data_free(bee_user_t *bu)
324{
325        struct msn_data *md = bu->ic->proto_data;
326        struct msn_buddy_data *bd = bu->data;
327
328        g_free(bd->cid);
329        g_free(bd);
330
331        g_tree_remove(md->domaintree, bu->handle);
332}
333
334void msn_initmodule()
335{
336        struct prpl *ret = g_new0(struct prpl, 1);
337
338        ret->name = "msn";
339        ret->mms = 1409;         /* this guess taken from libotr UPGRADING file */
340        ret->login = msn_login;
341        ret->init = msn_init;
342        ret->logout = msn_logout;
343        ret->buddy_msg = msn_buddy_msg;
344        ret->away_states = msn_away_states;
345        ret->set_away = msn_set_away;
346        ret->get_info = msn_get_info;
347        ret->add_buddy = msn_add_buddy;
348        ret->remove_buddy = msn_remove_buddy;
349        ret->chat_msg = msn_chat_msg;
350        ret->chat_invite = msn_chat_invite;
351        ret->chat_leave = msn_chat_leave;
352        ret->chat_with = msn_chat_with;
353        ret->keepalive = msn_keepalive;
354        ret->add_permit = msn_add_permit;
355        ret->rem_permit = msn_rem_permit;
356        ret->add_deny = msn_add_deny;
357        ret->rem_deny = msn_rem_deny;
358        ret->send_typing = msn_send_typing;
359        ret->handle_cmp = g_strcasecmp;
360        ret->buddy_data_add = msn_buddy_data_add;
361        ret->buddy_data_free = msn_buddy_data_free;
362
363        register_protocol(ret);
364}
Note: See TracBrowser for help on using the repository browser.