source: protocols/msn/msn.c @ dd43c62

Last change on this file since dd43c62 was dd43c62, checked in by dequis <dx@…>, at 2015-05-28T05:26:24Z

Gmail notifications support through new imcb_notify_email() API

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