[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[21029d0] | 4 | * Copyright 2002-2010 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; |
---|
| 22 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 23 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 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 |
---|
[59f527b6] | 37 | #define debug( text... ) imcb_log( ic, text ); |
---|
[b7d3cc34] | 38 | #else |
---|
| 39 | #define debug( text... ) |
---|
| 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" |
---|
| 48 | #define MSN_NS_PORT 1863 |
---|
| 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 | |
---|
[91d6e91] | 55 | #define MSNP11_PROD_KEY "ILTXC!4IXB5FB*PX" |
---|
| 56 | #define MSNP11_PROD_ID "PROD0119GSJUC$18" |
---|
| 57 | #define MSNP_VER "MSNP15" |
---|
| 58 | #define MSNP_BUILD "8.5.1288" |
---|
[21029d0] | 59 | |
---|
[b7d3cc34] | 60 | #define MSN_SB_NEW -24062002 |
---|
| 61 | |
---|
| 62 | #define MSN_MESSAGE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
| 63 | "Content-Type: text/plain; charset=UTF-8\r\n" \ |
---|
| 64 | "User-Agent: BitlBee " BITLBEE_VERSION "\r\n" \ |
---|
| 65 | "X-MMS-IM-Format: FN=MS%20Shell%20Dlg; EF=; CO=0; CS=0; PF=0\r\n" \ |
---|
| 66 | "\r\n" |
---|
| 67 | |
---|
| 68 | #define MSN_TYPING_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
| 69 | "Content-Type: text/x-msmsgscontrol\r\n" \ |
---|
| 70 | "TypingUser: %s\r\n" \ |
---|
| 71 | "\r\n\r\n" |
---|
| 72 | |
---|
[9c84617] | 73 | #define MSN_NUDGE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
| 74 | "Content-Type: text/x-msnmsgr-datacast\r\n" \ |
---|
| 75 | "\r\n" \ |
---|
| 76 | "ID: 1\r\n" \ |
---|
| 77 | "\r\n" |
---|
| 78 | |
---|
| 79 | #define MSN_SB_KEEPALIVE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
| 80 | "Content-Type: text/x-ping\r\n" \ |
---|
| 81 | "\r\n\r\n" |
---|
[9bf2481] | 82 | |
---|
[b7d3cc34] | 83 | #define PROFILE_URL "http://members.msn.com/" |
---|
| 84 | |
---|
[80175a1] | 85 | typedef enum |
---|
| 86 | { |
---|
| 87 | MSN_GOT_PROFILE = 1, |
---|
| 88 | MSN_GOT_PROFILE_DN = 2, |
---|
| 89 | MSN_DONE_ADL = 4, |
---|
[27053b5] | 90 | MSN_REAUTHING = 8, |
---|
[ed0589c] | 91 | MSN_EMAIL_UNVERIFIED = 16, |
---|
[80175a1] | 92 | } msn_flags_t; |
---|
| 93 | |
---|
[bae0617] | 94 | struct msn_handler_data |
---|
| 95 | { |
---|
| 96 | int fd, inpa; |
---|
| 97 | int rxlen; |
---|
| 98 | char *rxq; |
---|
| 99 | |
---|
| 100 | int msglen; |
---|
| 101 | char *cmd_text; |
---|
| 102 | |
---|
| 103 | /* Either ic or sb */ |
---|
| 104 | gpointer data; |
---|
| 105 | |
---|
| 106 | int (*exec_command) ( struct msn_handler_data *handler, char **cmd, int count ); |
---|
| 107 | int (*exec_message) ( struct msn_handler_data *handler, char *msg, int msglen, char **cmd, int count ); |
---|
| 108 | }; |
---|
| 109 | |
---|
[b7d3cc34] | 110 | struct msn_data |
---|
| 111 | { |
---|
[0da65d5] | 112 | struct im_connection *ic; |
---|
[b7d3cc34] | 113 | |
---|
[27053b5] | 114 | struct msn_handler_data ns[1]; |
---|
[80175a1] | 115 | msn_flags_t flags; |
---|
[b7d3cc34] | 116 | |
---|
| 117 | int trId; |
---|
[80175a1] | 118 | char *tokens[4]; |
---|
[4aa8a04] | 119 | char *lock_key, *pp_policy; |
---|
[b7d3cc34] | 120 | |
---|
[4aa8a04] | 121 | GSList *msgq, *grpq, *soapq; |
---|
[b7d3cc34] | 122 | GSList *switchboards; |
---|
[59f527b6] | 123 | int sb_failures; |
---|
| 124 | time_t first_sb_failure; |
---|
[bc736cfa] | 125 | |
---|
[59f527b6] | 126 | const struct msn_away_state *away_state; |
---|
[ff27648] | 127 | GSList *groups; |
---|
[76c89dc7] | 128 | char *profile_rid; |
---|
[5a7af1b] | 129 | |
---|
| 130 | /* Mostly used for sending the ADL command; since MSNP13 the client |
---|
| 131 | is responsible for downloading the contact list and then sending |
---|
| 132 | it to the MSNP server. */ |
---|
[ca7de3a] | 133 | GTree *domaintree; |
---|
[5a7af1b] | 134 | int adl_todo; |
---|
[b7d3cc34] | 135 | }; |
---|
| 136 | |
---|
| 137 | struct msn_switchboard |
---|
| 138 | { |
---|
[0da65d5] | 139 | struct im_connection *ic; |
---|
[b7d3cc34] | 140 | |
---|
[bae0617] | 141 | /* The following two are also in the handler. TODO: Clean up. */ |
---|
[b7d3cc34] | 142 | int fd; |
---|
| 143 | gint inp; |
---|
| 144 | struct msn_handler_data *handler; |
---|
[9bf2481] | 145 | gint keepalive; |
---|
[b7d3cc34] | 146 | |
---|
| 147 | int trId; |
---|
| 148 | int ready; |
---|
| 149 | |
---|
| 150 | int session; |
---|
| 151 | char *key; |
---|
| 152 | |
---|
| 153 | GSList *msgq; |
---|
| 154 | char *who; |
---|
[0da65d5] | 155 | struct groupchat *chat; |
---|
[b7d3cc34] | 156 | }; |
---|
| 157 | |
---|
| 158 | struct msn_away_state |
---|
| 159 | { |
---|
| 160 | char code[4]; |
---|
| 161 | char name[16]; |
---|
| 162 | }; |
---|
| 163 | |
---|
| 164 | struct msn_status_code |
---|
| 165 | { |
---|
| 166 | int number; |
---|
| 167 | char *text; |
---|
| 168 | int flags; |
---|
| 169 | }; |
---|
| 170 | |
---|
| 171 | struct msn_message |
---|
| 172 | { |
---|
| 173 | char *who; |
---|
| 174 | char *text; |
---|
| 175 | }; |
---|
| 176 | |
---|
[70ac477] | 177 | struct msn_groupadd |
---|
| 178 | { |
---|
| 179 | char *who; |
---|
| 180 | char *group; |
---|
| 181 | }; |
---|
| 182 | |
---|
[7f34ce2] | 183 | typedef enum |
---|
| 184 | { |
---|
[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, |
---|
[7f34ce2] | 191 | } msn_buddy_flags_t; |
---|
| 192 | |
---|
| 193 | struct msn_buddy_data |
---|
| 194 | { |
---|
| 195 | char *cid; |
---|
| 196 | msn_buddy_flags_t flags; |
---|
| 197 | }; |
---|
| 198 | |
---|
[ff27648] | 199 | struct msn_group |
---|
| 200 | { |
---|
| 201 | char *name; |
---|
| 202 | char *id; |
---|
| 203 | }; |
---|
| 204 | |
---|
[b7d3cc34] | 205 | /* Bitfield values for msn_status_code.flags */ |
---|
| 206 | #define STATUS_FATAL 1 |
---|
| 207 | #define STATUS_SB_FATAL 2 |
---|
[3b9390b] | 208 | #define STATUS_SB_IM_SPARE 4 /* Make one-to-one conversation switchboard available again, invite failed. */ |
---|
| 209 | #define STATUS_SB_CHAT_SPARE 8 /* Same, but also for groupchats (not used yet). */ |
---|
[b7d3cc34] | 210 | |
---|
[c6ca3ee] | 211 | extern int msn_chat_id; |
---|
[0196c47] | 212 | extern const struct msn_away_state msn_away_state_list[]; |
---|
| 213 | extern const struct msn_status_code msn_status_code_list[]; |
---|
[b7d3cc34] | 214 | |
---|
| 215 | /* Keep a list of all the active connections. We need these lists because |
---|
| 216 | "connected" callbacks might be called when the connection they belong too |
---|
| 217 | is down already (for example, when an impatient user disabled the |
---|
| 218 | connection), the callback should check whether it's still listed here |
---|
| 219 | before doing *anything* else. */ |
---|
[c6ca3ee] | 220 | extern GSList *msn_connections; |
---|
| 221 | extern GSList *msn_switchboards; |
---|
[b7d3cc34] | 222 | |
---|
| 223 | /* ns.c */ |
---|
[64768d4] | 224 | int msn_ns_write( struct im_connection *ic, int fd, const char *fmt, ... ); |
---|
[bae0617] | 225 | gboolean msn_ns_connect( struct im_connection *ic, struct msn_handler_data *handler, const char *host, int port ); |
---|
| 226 | void msn_ns_close( struct msn_handler_data *handler ); |
---|
[660cb00] | 227 | void msn_auth_got_passport_token( struct im_connection *ic, const char *token, const char *error ); |
---|
[ca7de3a] | 228 | void msn_auth_got_contact_list( struct im_connection *ic ); |
---|
[80175a1] | 229 | int msn_ns_finish_login( struct im_connection *ic ); |
---|
[b7d3cc34] | 230 | |
---|
| 231 | /* msn_util.c */ |
---|
[0da65d5] | 232 | int msn_logged_in( struct im_connection *ic ); |
---|
[193dc74] | 233 | int msn_buddy_list_add( struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *realname_, const char *group ); |
---|
| 234 | int msn_buddy_list_remove( struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *group ); |
---|
[e5854a8] | 235 | void msn_buddy_ask( bee_user_t *bu ); |
---|
[b7d3cc34] | 236 | char *msn_findheader( char *text, char *header, int len ); |
---|
| 237 | char **msn_linesplit( char *line ); |
---|
| 238 | int msn_handler( struct msn_handler_data *h ); |
---|
[46dca11] | 239 | void msn_msgq_purge( struct im_connection *ic, GSList **list ); |
---|
[21029d0] | 240 | char *msn_p11_challenge( char *challenge ); |
---|
[ca7de3a] | 241 | gint msn_domaintree_cmp( gconstpointer a_, gconstpointer b_ ); |
---|
[ff27648] | 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 ); |
---|
[e0e1546] | 244 | int msn_ns_set_display_name( struct im_connection *ic, const char *value ); |
---|
[b7d3cc34] | 245 | |
---|
| 246 | /* tables.c */ |
---|
[0196c47] | 247 | const struct msn_away_state *msn_away_state_by_number( int number ); |
---|
| 248 | const struct msn_away_state *msn_away_state_by_code( char *code ); |
---|
| 249 | const struct msn_away_state *msn_away_state_by_name( char *name ); |
---|
| 250 | const struct msn_status_code *msn_status_by_number( int number ); |
---|
[b7d3cc34] | 251 | |
---|
| 252 | /* sb.c */ |
---|
[64768d4] | 253 | int msn_sb_write( struct msn_switchboard *sb, const char *fmt, ... ); |
---|
[0da65d5] | 254 | struct msn_switchboard *msn_sb_create( struct im_connection *ic, char *host, int port, char *key, int session ); |
---|
| 255 | struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, char *handle ); |
---|
| 256 | struct msn_switchboard *msn_sb_by_chat( struct groupchat *c ); |
---|
| 257 | struct msn_switchboard *msn_sb_spare( struct im_connection *ic ); |
---|
[b7d3cc34] | 258 | int msn_sb_sendmessage( struct msn_switchboard *sb, char *text ); |
---|
[0da65d5] | 259 | struct groupchat *msn_sb_to_chat( struct msn_switchboard *sb ); |
---|
[b7d3cc34] | 260 | void msn_sb_destroy( struct msn_switchboard *sb ); |
---|
[ba9edaa] | 261 | gboolean msn_sb_connected( gpointer data, gint source, b_input_condition cond ); |
---|
[a830512] | 262 | int msn_sb_write_msg( struct im_connection *ic, struct msn_message *m ); |
---|
[bb839e8] | 263 | void msn_sb_start_keepalives( struct msn_switchboard *sb, gboolean initial ); |
---|
| 264 | void msn_sb_stop_keepalives( struct msn_switchboard *sb ); |
---|
[a830512] | 265 | |
---|
| 266 | #endif //_MSN_H |
---|