[5ebff60] | 1 | /********************************************************************\ |
---|
[b7d3cc34] | 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[79bb7e4] | 4 | * Copyright 2002-2012 Wilmer van der Gaast and others * |
---|
[b7d3cc34] | 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* MSN module */ |
---|
| 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 | |
---|
[a830512] | 26 | #ifndef _MSN_H |
---|
| 27 | #define _MSN_H |
---|
| 28 | |
---|
[b7d3cc34] | 29 | /* Some hackish magicstrings to make special-purpose messages/switchboards. |
---|
| 30 | */ |
---|
| 31 | #define TYPING_NOTIFICATION_MESSAGE "\r\r\rBEWARE, ME R TYPINK MESSAGE!!!!\r\r\r" |
---|
[9c84617] | 32 | #define NUDGE_MESSAGE "\r\r\rSHAKE THAT THING\r\r\r" |
---|
[b7d3cc34] | 33 | #define GROUPCHAT_SWITCHBOARD_MESSAGE "\r\r\rME WANT TALK TO MANY PEOPLE\r\r\r" |
---|
[9bf2481] | 34 | #define SB_KEEPALIVE_MESSAGE "\r\r\rDONT HANG UP ON ME!\r\r\r" |
---|
[b7d3cc34] | 35 | |
---|
[aa31117] | 36 | #ifdef DEBUG_MSN |
---|
[5ebff60] | 37 | #define debug(text ...) imcb_log(ic, text); |
---|
[b7d3cc34] | 38 | #else |
---|
[5ebff60] | 39 | #define debug(text ...) |
---|
[b7d3cc34] | 40 | #endif |
---|
| 41 | |
---|
[be7a180] | 42 | /* This should be MSN Messenger 7.0.0813 |
---|
| 43 | #define MSNP11_PROD_KEY "CFHUR$52U_{VIX5T" |
---|
| 44 | #define MSNP11_PROD_ID "PROD0101{0RM?UBW" |
---|
| 45 | */ |
---|
[e5a8118] | 46 | |
---|
[bae0617] | 47 | #define MSN_NS_HOST "messenger.hotmail.com" |
---|
[bc7a0d4] | 48 | #define MSN_NS_PORT "1863" |
---|
[bae0617] | 49 | |
---|
[be7a180] | 50 | /* Some other version. |
---|
[e5a8118] | 51 | #define MSNP11_PROD_KEY "O4BG@C7BWLYQX?5G" |
---|
| 52 | #define MSNP11_PROD_ID "PROD01065C%ZFN6F" |
---|
[be7a180] | 53 | */ |
---|
| 54 | |
---|
[bc676ac] | 55 | /* <= BitlBee 3.0.5 |
---|
[91d6e91] | 56 | #define MSNP11_PROD_KEY "ILTXC!4IXB5FB*PX" |
---|
| 57 | #define MSNP11_PROD_ID "PROD0119GSJUC$18" |
---|
[bc676ac] | 58 | */ |
---|
| 59 | |
---|
| 60 | #define MSNP11_PROD_KEY "C1BX{V4W}Q3*10SM" |
---|
| 61 | #define MSNP11_PROD_ID "PROD0120PW!CCV9@" |
---|
| 62 | #define MSNP_VER "MSNP18" |
---|
| 63 | #define MSNP_BUILD "14.0.8117.416" |
---|
[21029d0] | 64 | |
---|
[b7d3cc34] | 65 | #define MSN_SB_NEW -24062002 |
---|
| 66 | |
---|
[080c43a] | 67 | #define MSN_CAP1 0xC000 |
---|
| 68 | #define MSN_CAP2 0x0000 |
---|
| 69 | |
---|
[b7d3cc34] | 70 | #define MSN_MESSAGE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
[5ebff60] | 71 | "Content-Type: text/plain; charset=UTF-8\r\n" \ |
---|
| 72 | "User-Agent: BitlBee " BITLBEE_VERSION "\r\n" \ |
---|
| 73 | "X-MMS-IM-Format: FN=MS%20Shell%20Dlg; EF=; CO=0; CS=0; PF=0\r\n" \ |
---|
| 74 | "\r\n" |
---|
[b7d3cc34] | 75 | |
---|
| 76 | #define MSN_TYPING_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
[5ebff60] | 77 | "Content-Type: text/x-msmsgscontrol\r\n" \ |
---|
| 78 | "TypingUser: %s\r\n" \ |
---|
| 79 | "\r\n\r\n" |
---|
[b7d3cc34] | 80 | |
---|
[9c84617] | 81 | #define MSN_NUDGE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
[5ebff60] | 82 | "Content-Type: text/x-msnmsgr-datacast\r\n" \ |
---|
| 83 | "\r\n" \ |
---|
| 84 | "ID: 1\r\n" \ |
---|
| 85 | "\r\n" |
---|
[9c84617] | 86 | |
---|
| 87 | #define MSN_SB_KEEPALIVE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
[5ebff60] | 88 | "Content-Type: text/x-ping\r\n" \ |
---|
| 89 | "\r\n\r\n" |
---|
[9bf2481] | 90 | |
---|
[b7d3cc34] | 91 | #define PROFILE_URL "http://members.msn.com/" |
---|
| 92 | |
---|
[5ebff60] | 93 | typedef enum { |
---|
[80175a1] | 94 | MSN_GOT_PROFILE = 1, |
---|
| 95 | MSN_GOT_PROFILE_DN = 2, |
---|
| 96 | MSN_DONE_ADL = 4, |
---|
[27053b5] | 97 | MSN_REAUTHING = 8, |
---|
[ed0589c] | 98 | MSN_EMAIL_UNVERIFIED = 16, |
---|
[80175a1] | 99 | } msn_flags_t; |
---|
| 100 | |
---|
[5ebff60] | 101 | struct msn_handler_data { |
---|
[bae0617] | 102 | int fd, inpa; |
---|
| 103 | int rxlen; |
---|
| 104 | char *rxq; |
---|
[5ebff60] | 105 | |
---|
[bae0617] | 106 | int msglen; |
---|
| 107 | char *cmd_text; |
---|
[5ebff60] | 108 | |
---|
[bae0617] | 109 | /* Either ic or sb */ |
---|
| 110 | gpointer data; |
---|
[5ebff60] | 111 | |
---|
| 112 | int (*exec_command) (struct msn_handler_data *handler, char **cmd, int count); |
---|
| 113 | int (*exec_message) (struct msn_handler_data *handler, char *msg, int msglen, char **cmd, int count); |
---|
[bae0617] | 114 | }; |
---|
| 115 | |
---|
[5ebff60] | 116 | struct msn_data { |
---|
[0da65d5] | 117 | struct im_connection *ic; |
---|
[5ebff60] | 118 | |
---|
[27053b5] | 119 | struct msn_handler_data ns[1]; |
---|
[80175a1] | 120 | msn_flags_t flags; |
---|
[5ebff60] | 121 | |
---|
[b7d3cc34] | 122 | int trId; |
---|
[80175a1] | 123 | char *tokens[4]; |
---|
[4aa8a04] | 124 | char *lock_key, *pp_policy; |
---|
[f9258ae] | 125 | char *uuid; |
---|
[5ebff60] | 126 | |
---|
[4aa8a04] | 127 | GSList *msgq, *grpq, *soapq; |
---|
[b7d3cc34] | 128 | GSList *switchboards; |
---|
[59f527b6] | 129 | int sb_failures; |
---|
| 130 | time_t first_sb_failure; |
---|
[5ebff60] | 131 | |
---|
[59f527b6] | 132 | const struct msn_away_state *away_state; |
---|
[ff27648] | 133 | GSList *groups; |
---|
[76c89dc7] | 134 | char *profile_rid; |
---|
[5ebff60] | 135 | |
---|
[5a7af1b] | 136 | /* Mostly used for sending the ADL command; since MSNP13 the client |
---|
| 137 | is responsible for downloading the contact list and then sending |
---|
| 138 | it to the MSNP server. */ |
---|
[ca7de3a] | 139 | GTree *domaintree; |
---|
[5a7af1b] | 140 | int adl_todo; |
---|
[b7d3cc34] | 141 | }; |
---|
| 142 | |
---|
[5ebff60] | 143 | struct msn_switchboard { |
---|
[0da65d5] | 144 | struct im_connection *ic; |
---|
[5ebff60] | 145 | |
---|
[bae0617] | 146 | /* The following two are also in the handler. TODO: Clean up. */ |
---|
[b7d3cc34] | 147 | int fd; |
---|
| 148 | gint inp; |
---|
| 149 | struct msn_handler_data *handler; |
---|
[9bf2481] | 150 | gint keepalive; |
---|
[5ebff60] | 151 | |
---|
[b7d3cc34] | 152 | int trId; |
---|
| 153 | int ready; |
---|
[5ebff60] | 154 | |
---|
[b7d3cc34] | 155 | int session; |
---|
| 156 | char *key; |
---|
[5ebff60] | 157 | |
---|
[b7d3cc34] | 158 | GSList *msgq; |
---|
| 159 | char *who; |
---|
[0da65d5] | 160 | struct groupchat *chat; |
---|
[b7d3cc34] | 161 | }; |
---|
| 162 | |
---|
[5ebff60] | 163 | struct msn_away_state { |
---|
[b7d3cc34] | 164 | char code[4]; |
---|
| 165 | char name[16]; |
---|
| 166 | }; |
---|
| 167 | |
---|
[5ebff60] | 168 | struct msn_status_code { |
---|
[b7d3cc34] | 169 | int number; |
---|
| 170 | char *text; |
---|
| 171 | int flags; |
---|
| 172 | }; |
---|
| 173 | |
---|
[5ebff60] | 174 | struct msn_message { |
---|
[b7d3cc34] | 175 | char *who; |
---|
| 176 | char *text; |
---|
| 177 | }; |
---|
| 178 | |
---|
[5ebff60] | 179 | struct msn_groupadd { |
---|
[70ac477] | 180 | char *who; |
---|
| 181 | char *group; |
---|
| 182 | }; |
---|
| 183 | |
---|
[5ebff60] | 184 | typedef enum { |
---|
[ca7de3a] | 185 | MSN_BUDDY_FL = 1, /* Warning: FL,AL,BL *must* be 1,2,4. */ |
---|
[7f34ce2] | 186 | MSN_BUDDY_AL = 2, |
---|
| 187 | MSN_BUDDY_BL = 4, |
---|
| 188 | MSN_BUDDY_RL = 8, |
---|
| 189 | MSN_BUDDY_PL = 16, |
---|
[5a7af1b] | 190 | MSN_BUDDY_ADL_SYNCED = 256, |
---|
[208db4b] | 191 | MSN_BUDDY_FED = 512, |
---|
[7f34ce2] | 192 | } msn_buddy_flags_t; |
---|
| 193 | |
---|
[5ebff60] | 194 | struct msn_buddy_data { |
---|
[7f34ce2] | 195 | char *cid; |
---|
| 196 | msn_buddy_flags_t flags; |
---|
| 197 | }; |
---|
| 198 | |
---|
[5ebff60] | 199 | struct msn_group { |
---|
[ff27648] | 200 | char *name; |
---|
| 201 | char *id; |
---|
| 202 | }; |
---|
| 203 | |
---|
[b7d3cc34] | 204 | /* Bitfield values for msn_status_code.flags */ |
---|
| 205 | #define STATUS_FATAL 1 |
---|
| 206 | #define STATUS_SB_FATAL 2 |
---|
[5ebff60] | 207 | #define STATUS_SB_IM_SPARE 4 /* Make one-to-one conversation switchboard available again, invite failed. */ |
---|
| 208 | #define STATUS_SB_CHAT_SPARE 8 /* Same, but also for groupchats (not used yet). */ |
---|
[b7d3cc34] | 209 | |
---|
[c6ca3ee] | 210 | extern int msn_chat_id; |
---|
[0196c47] | 211 | extern const struct msn_away_state msn_away_state_list[]; |
---|
| 212 | extern const struct msn_status_code msn_status_code_list[]; |
---|
[b7d3cc34] | 213 | |
---|
| 214 | /* Keep a list of all the active connections. We need these lists because |
---|
| 215 | "connected" callbacks might be called when the connection they belong too |
---|
| 216 | is down already (for example, when an impatient user disabled the |
---|
| 217 | connection), the callback should check whether it's still listed here |
---|
| 218 | before doing *anything* else. */ |
---|
[c6ca3ee] | 219 | extern GSList *msn_connections; |
---|
| 220 | extern GSList *msn_switchboards; |
---|
[b7d3cc34] | 221 | |
---|
| 222 | /* ns.c */ |
---|
[5ebff60] | 223 | int msn_ns_write(struct im_connection *ic, int fd, const char *fmt, ...) G_GNUC_PRINTF(3, 4); |
---|
| 224 | gboolean msn_ns_connect(struct im_connection *ic, struct msn_handler_data *handler, const char *host, int port); |
---|
| 225 | void msn_ns_close(struct msn_handler_data *handler); |
---|
| 226 | void msn_auth_got_passport_token(struct im_connection *ic, const char *token, const char *error); |
---|
| 227 | void msn_auth_got_contact_list(struct im_connection *ic); |
---|
| 228 | int msn_ns_finish_login(struct im_connection *ic); |
---|
| 229 | int msn_ns_sendmessage(struct im_connection *ic, struct bee_user *bu, const char *text); |
---|
| 230 | void msn_ns_oim_send_queue(struct im_connection *ic, GSList **msgq); |
---|
[b7d3cc34] | 231 | |
---|
| 232 | /* msn_util.c */ |
---|
[5ebff60] | 233 | int msn_buddy_list_add(struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *realname_, |
---|
| 234 | const char *group); |
---|
| 235 | int msn_buddy_list_remove(struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *group); |
---|
| 236 | void msn_buddy_ask(bee_user_t *bu); |
---|
| 237 | char **msn_linesplit(char *line); |
---|
| 238 | int msn_handler(struct msn_handler_data *h); |
---|
| 239 | void msn_msgq_purge(struct im_connection *ic, GSList **list); |
---|
| 240 | char *msn_p11_challenge(char *challenge); |
---|
| 241 | gint msn_domaintree_cmp(gconstpointer a_, gconstpointer b_); |
---|
| 242 | struct msn_group *msn_group_by_name(struct im_connection *ic, const char *name); |
---|
| 243 | struct msn_group *msn_group_by_id(struct im_connection *ic, const char *id); |
---|
| 244 | int msn_ns_set_display_name(struct im_connection *ic, const char *value); |
---|
| 245 | const char *msn_normalize_handle(const char *handle); |
---|
[b7d3cc34] | 246 | |
---|
| 247 | /* tables.c */ |
---|
[5ebff60] | 248 | const struct msn_away_state *msn_away_state_by_number(int number); |
---|
| 249 | const struct msn_away_state *msn_away_state_by_code(char *code); |
---|
| 250 | const struct msn_away_state *msn_away_state_by_name(char *name); |
---|
| 251 | const struct msn_status_code *msn_status_by_number(int number); |
---|
[b7d3cc34] | 252 | |
---|
| 253 | /* sb.c */ |
---|
[5ebff60] | 254 | int msn_sb_write(struct msn_switchboard *sb, const char *fmt, ...) G_GNUC_PRINTF(2, 3);; |
---|
| 255 | struct msn_switchboard *msn_sb_create(struct im_connection *ic, char *host, int port, char *key, int session); |
---|
| 256 | struct msn_switchboard *msn_sb_by_handle(struct im_connection *ic, const char *handle); |
---|
| 257 | struct msn_switchboard *msn_sb_by_chat(struct groupchat *c); |
---|
| 258 | struct msn_switchboard *msn_sb_spare(struct im_connection *ic); |
---|
| 259 | int msn_sb_sendmessage(struct msn_switchboard *sb, char *text); |
---|
| 260 | struct groupchat *msn_sb_to_chat(struct msn_switchboard *sb); |
---|
| 261 | void msn_sb_destroy(struct msn_switchboard *sb); |
---|
| 262 | gboolean msn_sb_connected(gpointer data, gint source, b_input_condition cond); |
---|
| 263 | int msn_sb_write_msg(struct im_connection *ic, struct msn_message *m); |
---|
| 264 | void msn_sb_start_keepalives(struct msn_switchboard *sb, gboolean initial); |
---|
| 265 | void msn_sb_stop_keepalives(struct msn_switchboard *sb); |
---|
[a830512] | 266 | |
---|
| 267 | #endif //_MSN_H |
---|